Spring报错——Scope ‘session’ is not active for the current thread详解编程语言

在对程序进行了一些修改后,运行发现spring报了这个错误,[email protected](“session”)导致的,现记录下解决方法。

解决方法:

将Scope设置为scope=”session”需要在web.xml中做一下设置打开session机制:

<!– 开启Session机制 –>
<listener>
  <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>

 

如果单单加入以上一条还不行的话,那就在相应的spring bean配置中加入<aop:scoped-proxy/>,如:

<bean id=”xxxx” class=”xxx” scope=”session”>
  <aop:scoped-proxy/>
</bean>

 
 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/13950.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论