Esempio

public static class BeanClass implements javax.ejb.SessionBean {
private static final void ejbCreate () {
//..
}
//methods that must implement the interface
}

Soluzione
Dichiarare il metodo ejbCreate() come public e non static o non final


public class BeanClass implements javax.ejb.SessionBean {
public void ejbCreate () {
//..
}
//methods that must implement the interface
}