Esempio

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
}

Soluzione
Implementare sempre un metodo ejbPostCreate() corrispondente per ogni metodo ejbCreate().


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
}