Example

public class BeanClass implements javax.ejb.EntityBean {
public void ejbCreate () {
//..
}
public void ejbCreate(int a){
//..
}

//no matching ejbPostCreate() method
//other methods that must implement the interface
}

Solution
Always implement a matching ejbPostCreate() method for every ejbCreate() method.


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