我使用Spring的Jersey应用程序 我希望使用 @InjectParam (以及文档中写的内容),Jersey会从Spring容器中获取对象,但看起来泽西岛正在创建对象而不是向Spring请求它。
有没有办法检查Spring IOC是否在Jersey注册?
的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>/WEB-INF/classes/log4j.properties</param-value>
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:appContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
<servlet>
<servlet-name>SpringDispatcher</servlet-name>
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>SpringDispatcher</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
我的课程提供了对工厂的基本访问权限,但工厂是新的
public FileStoreService(@InjectParam("dataAccessFactory") factory ) {
this.factory = factory;
}
我添加了 @Component ,但仍然没有。
答案 0 :(得分:1)
正在使用错误的servlet。它应该是
<servlet-class>com.sun.jersey.spi.spring.container.servlet.SpringServlet</servlet-class>
当前的容器使用Jersey自己的容器,它只使用默认的构造函数创建对象。 Spring Servlet允许Jersey连接到Spring容器。