web-dev-qa-db-ja.com

Webアプリケーションで春から「スレッドバインドされた要求が見つかりません」エラーが発生する

Webアプリで「スレッドにバインドされたリクエストが見つかりません」というエラーが表示され、何らかの助けを求めています。私はstruts2 +スプリング+休止状態を使用して、スプリングを使用して休止状態セッションファクトリを管理し、休止状態セッションをstrutsアクションに注入しようとしています。それが理にかなっているといいのですが。アプリが起動してもエラーは発生しませんが、最初のWebリクエストを行うと、「スレッドバインドされたリクエストが見つかりません」というエラーが表示されます。これが私の春の設定です:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<beans>
  <bean id="hibernateSessionFactory" scope="singleton"
    class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
    <property name="configLocation" value="classpath:hibernate.cfg.xml" />
  </bean>
  <bean id="hibernateSession" factory-bean="hibernateSessionFactory"
    factory-method="openSession" destroy-method="close" scope="request" class="org.hibernate.Session" />
</beans>

これが私の行動です:

package actions.events;
import org.hibernate.Session;

public class Listing {
  Session session;
  public void setHibernateSession(Session value) throws Exception
  {
    session = value;
  }

  public String execute() {
    return "success";
  }
}

私の唯一のリードは、上記の「setHibernateSession」関数を削除した場合、エラーが発生しないことです。おそらく、アクションがセッションを必要としない場合(遅延インスタンス化)、スプリングはセッションの作成を気にしません。

そしてここに例外があります:

Unable to instantiate Action, actions.events.Listing, defined for 'Listing' in namespace '/events'Error creating bean with name 'hibernateSession': Scope 'request' is not active for the current thread; consider defining a scoped proxy for this bean if you intend to refer to it from a singleton; nested exception is Java.lang.IllegalStateException: No thread-bound request found: Are you referring to request attributes outside of an actual web request, or processing a request outside of the originally receiving thread? If you are actually operating within a web request and still receive this message, your code is probably running outside of DispatcherServlet/DispatcherPortlet: In this case, use RequestContextListener or RequestContextFilter to expose the current request.
com.opensymphony.xwork2.DefaultActionInvocation.createAction(DefaultActionInvocation.Java:307)
com.opensymphony.xwork2.DefaultActionInvocation.init(DefaultActionInvocation.Java:388)
com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.Java:187)
org.Apache.struts2.impl.StrutsActionProxy.prepare(StrutsActionProxy.Java:61)
org.Apache.struts2.impl.StrutsActionProxyFactory.createActionProxy(StrutsActionProxyFactory.Java:39)
com.opensymphony.xwork2.DefaultActionProxyFactory.createActionProxy(DefaultActionProxyFactory.Java:47)
org.Apache.struts2.dispatcher.Dispatcher.serviceAction(Dispatcher.Java:478)
org.Apache.struts2.dispatcher.ng.ExecuteOperations.executeAction(ExecuteOperations.Java:77)
org.Apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter.doFilter(StrutsPrepareAndExecuteFilter.Java:91)
org.Apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.Java:235)
org.Apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.Java:206)
com.opensymphony.sitemesh.webapp.SiteMeshFilter.obtainContent(SiteMeshFilter.Java:129)
com.opensymphony.sitemesh.webapp.SiteMeshFilter.doFilter(SiteMeshFilter.Java:77)
org.Apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.Java:235)
org.Apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.Java:206)
org.Apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.Java:233)
org.Apache.catalina.core.StandardContextValve.invoke(StandardContextValve.Java:191)
org.Apache.catalina.core.StandardHostValve.invoke(StandardHostValve.Java:128)
org.Apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.Java:102)
org.Apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.Java:109)
org.Apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.Java:293)
org.Apache.coyote.http11.Http11Processor.process(Http11Processor.Java:849)
org.Apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.Java:583)
org.Apache.Tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.Java:454)
Java.lang.Thread.run(Unknown Source)

ああ、キッカーは私のweb.xml doesに必要なコンテキストリスナーがあるため、httpリクエストはstrutsによって認識されるはずです。

<?xml version="1.0" encoding="UTF-8"?>
<web-app ...
  ...
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  ...
</web-app>
25
Chris

Spring MVCなしでリクエストスコープを使用するには、web.xmlでRequestContextListenerを宣言する必要があります( .5.4.1。初期Web構成 を参照):

<web-app>
  ...
  <listener>
    <listener-class>
        org.springframework.web.context.request.RequestContextListener
    </listener-class>
  </listener>
  ...
</web-app>
51
axtavt

XMLの代わりにJava=を使用してアプリを設定している場合は、同じ設定を

 public void onStartup(ServletContext servletContext) throws ServletException {
          //add listener
          servletContext.addListener(new RequestContextListener());
5
felipe