public class BeanClass implements javax.ejb.SessionBean { public void ejbCreate () { //empty body
} //other methods that must implement the interface
}
Lösung
Implementieren Sie immer mindestens eine Methode 'ejbCreate().
public class BeanClass implements javax.ejb.SessionBean { public void ejbCreate () { //non-empty body
} //other methods that must implement the interface
}