Example

public class BeanClass implements javax.ejb.EntityBean {
public void ejbPostCreate () {
//empty body
}
//other methods that must implement the interface
}

Solution
Always implement at least one ejbPostCreate() method.


public class BeanClass implements javax.ejb.EntityBean {
public void ejbPostCreate () {
//non-empty body
}
//other methods that must implement the interface
}