-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
None
-
None
Embedded Glassfish supports only Local EJB which have name with suffix "bean"
Assume Hello and Bye are minimal interfaces and HelloBean and ByeImpl are local Stateless EJB
The following test pass:
@Deployment
public static JavaArchive createDeployment()
@EJB
Hello helloBean;
@Test
public void test() throws Exception
but this one fails:
@Deployment
public static JavaArchive create()
@EJB Bye basic;
@Test
public void test() throws Exception
- duplicates
-
ARQ-77 Support @EJB injection with proper semantics
- Open