ejb « wicket « Java Enterprise Q&A





1. Using EJB in Wicket WebPage    stackoverflow.com

When I'm using @EJB annotation to access stateless EJB through remote interface in common HttpServlet, it works OK:

public class ListMsgs extends HttpServlet
{
  @EJB
  private Msgs msgsRI;
  ...
  ...

2. Weld injection failing when calling a method from an super/abstract class with Wicket    stackoverflow.com

I am having a problem with weld-wicket. When @Inject-ing an EJB that inherits from an abstract class, if I attempt to call a method from the abstract class I get an ...