Beispiel

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

Lösung
Deklarieren Sie die Methode 'ejbCreate()' als public und weder als static noch als final


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