我一直在反对这一点,并且认为我最后会请求帮助/想法为什么我的EJB没有正确注入。我正在使用Java 6 w / EJB 3&使用Apache Wink的WAS社区版,并在尝试访问ITestService时继续获取NPE。如果我尝试在上下文中查找bean,则会抛出javax.naming.NameNotFoundException。是否有我缺少的东西/否则我必须做的是将bean添加到上下文中?
申请类
public class MyApplication extends Application {
@Override
public Set<Class<?>> getClasses() {
Set<Class<?>> resources = new HashSet<Class<?>>();
resources.add( TestResource.class );
return resources;
}
}
bean的界面
@Local
public interface ITestService {
public String test();
}
bean的实现类
@Singleton
public class TestService implements ITestService {
@Override
public String test() {
return "Hello World!";
}
}
JAX-RS资源
@Path("/test")
@Produces(MediaType.TEXT_PLAIN)
@Stateless
public class TestResource {
@EJB
private ITestService service;
@GET
public Response test() {
String value = service.test();
return Response.ok( value ).build();
}
}
的web.xml
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<description>My Web Application</description>
<servlet>
<servlet-name>MyServlet</servlet-name>
<servlet-class>org.apache.wink.server.internal.servlet.RestServlet</servlet-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>com.gordysc.myfit.server.servlets.MyApplication</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>MyServlet</servlet-name>
<url-pattern>/resources/*</url-pattern>
</servlet-mapping>
</web-app>
的geronimo-web.xml中
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1"
xmlns:naming="http://geronimo.apache.org/xml/ns/naming-1.2"
xmlns:sys="http://geronimo.apache.org/xml/ns/deployment-1.2">
<context-root>/myfit</context-root>
</web-app>
答案 0 :(得分:1)
我刚刚遇到了类似的头部撞击经历。我最终放弃了EJB注入,转而使用JNDI查找方法:
添加到我的web.xml:
<ejb-local-ref>
<ejb-ref-name>ejb/MyEJBLocal</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<local>com.test.ejb.MyEJBLocal</local>
</ejb-local-ref>
然后在我的Web服务实现类中:
javax.naming.Context jndiContext = new InitialContext();
MyEJBLocal myEJB =
(MyEJBLocal) jndiContext.lookup("java:comp/env/ejb/MyEJBLocal");
你有没有运气的EJB注入?如果是这样,请让我知道你做了什么。如果没有,我希望这有帮助。