每次我调用 localhost:8080/user/1 时,它都会创建一个新的用户服务对象,而不是使用在服务器启动期间创建的对象。我正在使用带有 Spring 的 Jersey。
应用程序上下文.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd"
default-autowire="byName"
>
<bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>
<context:annotation-config/>
<context:component-scan base-package="com.gigenginecore.platform.dataaccess.impl" />
<context:component-scan base-package="com.gigengine.dataaccess"/>
<context:component-scan base-package="com.gigengine.dataaccess.impl"/>
<context:component-scan base-package="com.gigenginecore.platform.service" />
<context:component-scan base-package="com.gigengine.service" />
<context:component-scan base-package="com.gigenginecore.provider" />
</beans>
///// UserService 类的代码片段,我什至试图强制范围为单例。
@Service
@Scope("singleton")
@Path("/user")
public class UserService extends AbstractUserService {
///from my web.xml
<servlet>
<servlet-name>jersey-servlet</servlet-name>
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>com.gigengine.service,com.gigenginecore.platform.service, com.gigenginecore.provider</param-value>
</init-param>
<init-param>
<param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
<param-value>true</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>jersey-servlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
///// 所有 DAO 在启动时都被正确实例化并注入到用户服务类中,但是当我调用服务端点本身时,它会创建一个新的用户服务类,其中 DAO 为空。
我需要做些什么来获取启动时创建的那个吗?不知道为什么当它是“Spring”单例时它会创建一个新实例。
有什么建议么?