私はしばらくこれに頭を悩ませていましたが、最終的に、EJB が正しく注入されない理由について助け/アイデアを求めることにしました。Java 6 と EJB 3 & WAS Community Edition を Apache Wink で使用していますが、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>