Beispiel
public class
BeanClass
implements
javax.ejb.EntityBean {
private static
Object staticField;
//other methods that must implement the interface
}
Lösung
Deklarieren Sie Felder des Typs
static
als
final
.
public class
BeanClass
implements
javax.ejb.EntityBean {
private static final
Object staticField;
//other methods that must implement the interface
}