Beispiel

public class BeanClass implements javax.ejb.EntityBean {
//no constructor
//other methods that must implement the interface
}

Lösung
Geben Sie einen Standardkonstruktor des Typs 'public' ohne Parameter an.


public class BeanClass implements javax.ejb.EntityBean {
public BeanClass () {
//..
}
//other methods that must implement the interface
}