public static class BeanClass implements javax.ejb.SessionBean { private static final void ejbCreate () { //..
} //metody které musí implementovat rozhraní
}
Řešení
Deklarujte metodu ejbCreate() jako public a ne jako static ani final
public class BeanClass implements javax.ejb.SessionBean { public void ejbCreate () { //..
} //metody které musí implementovat rozhraní
}