为什么这个具有基于Java配置的Spring应用程序无法正常工作

为什么这个具有基于Java配置的Spring应用程序无法正常工作,第1张

为什么这个具有基于Java配置的Spring应用程序无法正常工作
java.lang.IllegalStateException: Cannot initialize context because there is already a root application context present - check whether you have multiple ContextLoader* definitions in your web.xml!

在你的

WebAppInitializer
,要注册
ContextLoaderListener

由于您使用

AbstractSecurityWebApplicationInitializer
super

构造函数接受
Class[]

创建一个新实例,该实例将使用指定的类实例化ContextLoaderListener。

也会注册一个

ContextLoaderListener
。注意类javadoc

与一起使用时

AbstractSecurityWebApplicationInitializer(Class...)
,也会注册一个
ContextLoaderListener
。与一起使用时
AbstractSecurityWebApplicationInitializer()
,通常会与的子类一起使用此类
AbstractContextLoaderInitializer

由于错误状态,您不能有两个

ContextLoaderListener
实例,因为它们都将尝试创建并将其添加
ApplicationContext
到中
ServletContext



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5621758.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存