异常发送上下文已初始化
当我运行我的应用程序时,它给了我这个异常:-
Exception sending context initialized event to listener instance of class
org.springframework.web.util.Log4jConfigListener
java.lang.ExceptionInInitializerError
但这个问题不是永久性的。如果我从 web.xml 中删除 log4j 条目并重新启动电脑,然后再次添加 log4j 条目并启动服务器,则应用程序可以正常工作。 我注意到,当部署应用程序以及取消部署并再次部署相同的应用程序时,会出现此问题。
请帮助我......我三个月来就面临这个问题......
When i am running my application it give me this exception:-
Exception sending context initialized event to listener instance of class
org.springframework.web.util.Log4jConfigListener
java.lang.ExceptionInInitializerError
But this problem is not permanent. If i remove the log4j entries from web.xml and restart p.c and then again add log4j entries and start the server, then the application works fine.
I noticed that when the application is deployed and when i undeploy and again deploy the same application, this problem emerge.
Please help me ........ i am facing this problem from 3 months...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只是稍微调查了一下,发现了类似的问题:
它会导致 log4j 的多个 jar 文件可供应用程序使用。
从网络/应用程序服务器和构建路径(包括从其他
路径而不是 Web/应用程序服务器)
您可以在此处查看整个线程:
http://www.coderanch.com/t/551933/Spring/Exception-sending-context-initialized-event
看起来这是你的问题。
I just investigated it a little and have found the similar issue:
It causes when multiple jar file for log4j is available to application.
From web/application server and from build path(Included from other
path rather than web/application server)
You can see the entire thread here:
http://www.coderanch.com/t/551933/Spring/Exception-sending-context-initialized-event
looks like this is your problem.