org.springframework.beans.factory.BeanCreationException:创建名称为“ scopedTarget.sessionMap”的bean时出错

时间:2019-05-27 07:29:31

标签: java spring tomcat

我得到BeanCreationException的{​​{1}},属于sessionMap类。我有Scope会话的bean在java.util.HashMap中提供了proxyMode,如下所示:

applicationContext.xml

我经历了多个SO帖子,这与相同的错误相似。还尝试了thisthis。使用这些解决方案,<bean id="sessionMap" class="java.util.HashMap" scope="session"> <constructor-arg> <value type="int">2</value> </constructor-arg> <aop:scoped-proxy/> </bean> 将在启动tomcat时仅执行一次,此后将不再执行。我不知道那是因为我缺少getAsyncExecutorRunnable。我不知道该如何定义。在其他几个帖子中也尝试了其他几种解决方案。但是没有任何事情解决我的问题。有人请帮助我。

我还将以下内容添加到了我的web.xml

execute

堆栈跟踪:

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

0 个答案:

没有答案