我正在尝试开发一个小型网络应用程序作为即将到来的决赛的培训,我无法弄清楚我做错了什么。
这些是我的<实体 * L Kunde
和Konto
(many2many-relationship),自动创建的表Kunde_Konto
只有两个主键我的实体。
@Entity
@NamedQueries({
@NamedQuery(name="findKundeById", query="select k from Kunde k where k.svnr = :svnr"),
})
public class Kunde implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Column(precision=4, scale=0)
private Long svnr;
@ManyToMany
private List<Konto> konten;
}
@Entity
@NamedQueries({
@NamedQuery(name="findKontoByBesitzer", query="select k from Konto k join k.besitzer b where b.svnr = :svnr")
})
public class Konto implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Column(precision=4, scale=0)
private Long knr;
@ManyToMany(mappedBy="konten")
private List<Kunde> besitzer;
}
这是我的 Managed Bean :
@ManagedBean
@SessionScoped
public class KundenKontoList implements Serializable {
private FacesContext fc = null;
private HttpServletRequest hsr = null;
private HttpSession hs = null;
@EJB
private KontoFacadeLocal kontoFacade;
@EJB
private KundeFacadeLocal kundeFacade;
private Kunde k;
private List<Konto> konten;
/**
* Creates a new instance of KundenKontoList
*/
public KundenKontoList() {
fc = FacesContext.getCurrentInstance();
hsr = (HttpServletRequest) fc.getExternalContext().getRequest();
hs = hsr.getSession();
k = (Kunde) hs.getAttribute("kunde");
konten = kontoFacade.findKontoByBesitzer(k);
}
}
例外
com.sun.faces.mgbean.ManagedBeanCreationException: Klasse at.pf.controller.KundenKontoList kann nicht instanziiert werden.
哪个翻译意味着KundenKontoList
无法进行实例化,会被抛弃:
konten = kontoFacade.findKontoByBesitzer(k);
//method in the facade:
@Override
public List<Konto> findKontoByBesitzer(Kunde k) {
Query q = em.createNamedQuery("findKontoByBesitzer");
q.setParameter("svnr", k.getSvnr());
return q.getResultList();
}
我认为它与kontoFacade
有关,但我不知道确切的问题是什么。
答案 0 :(得分:0)
在initbean初始化失败,向我建议注入ejbs失败。是否有更长的错误消息?