我创建了一个用于测试struts2依赖注入(@Inject
)的应用程序。注射在许多领域都运行良好,除了泽西休息服务类,我在其中定义了webservices操作。
我得到如下所示的异常
Sep 22, 2014 8:48:50 AM com.sun.jersey.spi.container.ContainerResponse mapMappableContainerException
SEVERE: The RuntimeException could not be mapped to a response, re-throwing to the HTTP container
java.lang.NullPointerException
at usermodules.services.UserModulesServices.userName(UserModulesServices.java:30)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
任何人都可以告诉我一些解决方案吗
struts2.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<bean class="net.viralpatel.struts2.action.MoreServiceImpl" name="services" />
<constant name="struts.action.excludePattern" value="/rest/.*" />
<constant name="struts.enable.DynamicMethodInvocation"
value="false" />
<constant name="struts.devMode" value="false" />
<constant name="struts.custom.i18n.resources"
value="ApplicationResources" />
<package name="default" extends="struts-default" namespace="/">
<action name="login"
class="net.viralpatel.struts2.action.LoginAction">
<result name="success">Welcome.jsp</result>
<result name="error">Login.jsp</result>
</action>
</package>
</struts>
UserModulesServices.java
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import net.viralpatel.struts2.action.MoreServiceImpl;
import com.opensymphony.xwork2.inject.Inject;
@Path("/users")
public class UserModulesServices {
@Inject("services")
public MoreServiceImpl moreServiceImpl;
public MoreServiceImpl getMoreServiceImpl() {
return moreServiceImpl;
}
public void setMoreServiceImpl(MoreServiceImpl moreServiceImpl) {
this.moreServiceImpl = moreServiceImpl;
}
@GET
@Path("/name/{i}")
@Produces(MediaType.TEXT_PLAIN)
public String userName(@PathParam("i") String i) {
System.out.println("name::::::::" + moreServiceImpl.validate());
return "{\"name\":\"" + i + "\"}";
}
}
MoreServiceImpl.java
package net.viralpatel.struts2.action;
public class MoreServiceImpl implements MoreServices{
@Override
public String validate() {
return "testing";
}
}
答案 0 :(得分:1)
来自official CDI Plugin documentation:
使用正确的
@Inject
Struts 2和它的核心组件XWork使用它自己的内部 依赖注入容器。有趣的是,你可以命名 JSR-330的奶奶,因为它是谷歌的早期预发布版本 Guice曾经由Crazybob Lee开发 - 同样是Bob Lee 与SpringSource的Rod Johnson一起领导JSR-330规范。
也就是说,你会发现
@Inject
注释都是com.opensymphony.xwork2.inject.Inject
和javax.inject.Inject
。 不要 混合这两个 -javax.inject.Inject
是你想要使用的那个 你的Struts 2 CDI插件和CDI集成一般!当你 也可以使用Struts的内部注释,效果可能是 未定义的奇怪 - 所以检查你的进口!
然后使用正确的com.opensymphony.xwork2.inject.Inject
javax.inject.Inject
答案 1 :(得分:1)
对于这个特殊问题,您应该为
提供bean配置<bean class="net.viralpatel.struts2.action.UserModulesServices" name="userModulesServices" />
注射可以使用,但它是供内部使用的,
在内部,框架使用自己的依赖注入容器,与Google Guice非常相似。
你应该考虑其他DI框架的机会。见Dependency Injection。