spring mvcで "Singleton"オブジェクトを返す問題があり、すべてのフィールドが複数の(同時の)Web要求にさらされています。 私は、コントローラ/サービスとDAOオブジェクトの新しいインスタンスを得ることができるように、 "要求"にスコープを変更しようとしましたが、HTTPリクエストごとにこれを動作させることができません。以下@scope( "request")が動作していない、spring mvcがまだシングルトンを返す
私のDAOのサンプルコード、コントローラ、サービスドメインは以下
@Component
@Scope(value=WebApplicationContext.SCOPE_REQUEST, proxyMode =ScopedProxyMode.TARGET_CLASS)
public class CountDaoImpl implements CountDao {
private static final long serialVersionUID = 1L;
private static Connection conn = null;
}
@Controller(value="countController")
@RequestMapping("VIEW")
@Scope(value=WebApplicationContext.SCOPE_REQUEST, proxyMode =ScopedProxyMode.TARGET_CLASS)
public class CountController {
@Autowired
@Qualifier("CountServiceImpl")
CountService CountService;
.
.
.
}
@Service("CountServiceImpl")
@Scope(value=WebApplicationContext.SCOPE_REQUEST, proxyMode =ScopedProxyMode.TARGET_CLASS)
public class CountServiceImpl implements CountService {
@Autowired
@Qualifier("countDaoImpl")
private CountDao CountDao;
}
@Component
@Scope(value=WebApplicationContext.SCOPE_REQUEST, proxyMode =ScopedProxyMode.TARGET_CLASS)
public class Count implements Serializable {
/**
*
*/
private static final long serialVersionUID = 9931247627087666L;
private Owners owners;
.
.
.
.
.
.
}
spring docsで述べたと同じように "RequestContextListener" を有する私のweb.xmlのあるオブジェクトであります以下は
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>PortletApp</display-name>
<session-config>
<session-timeout>0</session-timeout>
</session-config>
<jsp-config>
<taglib>
<taglib-uri>http://java.sun.com/portlet_2_0</taglib-uri>
<taglib-location>/WEB-INF/tld/liferay-portlet.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://liferay.com/tld/aui</taglib-uri>
<taglib-location>/WEB-INF/tld/aui.tld</taglib-location>
</taglib>
</jsp-config>
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>/WEB-INF/classes/log4j.properties</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
<servlet>
<servlet-name>view-servlet</servlet-name>
<servlet-class>org.springframework.web.servlet.ViewRendererServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>view-servlet</servlet-name>
<url-pattern>/WEB-INF/servlet/view</url-pattern>
</servlet-mapping>
</web-app>
"カウント-portlet.xmlに" です
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-3.0.xsd
">
<context:annotation-config />
<context:component-scan base-package="com.company.count" />
<bean class="org.springframework.web.portlet.mvc.annotation.DefaultAnnotationHandlerMapping"/>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
上記のすべてのクラスに対してHTTPリクエストごとに1つのオブジェクトを作成したいと思います。 誰かが私がどこに間違っているか教えてもらえますか?
「機能しない」と定義します。あなたのコードは何をしていますか?何が起こると思いますか?代わりに何が起こるのですか? –
2つの別々のHTTP要求が同じオブジェクトを取得しているため、これらのフィールドは両方の要求から見えます。両方とも同時要求であれば、要求2はしばしばクローズド接続/結果セットに遭遇する。なぜなら、要求1は作業完了後にそれらを閉じたからである。 – user1751510
http要求ごとに別個のオブジェクトを作成したいので、2つの同時要求は互いに衝突しない。それは@scope( "request")に切り替えるという私の意図でしたが、{@Scope(value = WebApplicationContext.SCOPE_REQUEST、proxyMode = ScopedProxyMode.TARGET_CLASS)}を使用しても違いはありませんでした。 – user1751510