1

私は、Jersey が Spring Container からオブジェクトを取得することを期待して (およびドキュメントに書かれていることを) @InjectParamを使用していますが、Jersey は 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を追加しましたが、まだ何もありません。

4

1 に答える 1

1

間違ったサーブレットが使用されていました。そのはず

<servlet-class>com.sun.jersey.spi.spring.container.servlet.SpringServlet</servlet-class>

現在のコンテナはJersey独自のコンテナを使用しており、デフォルトのコンストラクタを使用してのみオブジェクトを作成します。Springサーブレットを使用すると、JerseyをSpringコンテナに接続できます。

于 2012-10-15T08:31:17.893 に答える