这个异常在WEB服务重启时出现,造成这个异常的原因有多种
1.如果在这个异常前面有其它异常,请先解决前面的异常,因为其它的异常也会导致这个结果,比如:服务启动时找不到类,配置文件读取异常等。 当你前面的异常解决后这个异常自然也就消失了。
2.如果前面的异常都解决了还会出现这个异常
A.
将web.xml中配置spring的启动方式,是用的监听器模式
<listener>
<listener-class> org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
改为servlet启动模式。
<servlet>
<servlet-name>context</servlet-name>
<servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
B.
如果你的应用用到了远程网络,请检查你本地或者远程网络是否正常
C.
查检是否有jar包版本冲突
D.
清空work目录下的文件 ,重启服务器。 这里主要考滤的是缓存的问题。
当然还有其它的可能性,这里就不一一列出了。
但有一点我们要记住了,当出现较比异常时,一定要从第一个异常开始解决,反对跳越式的处理异常。
因为后面的异常极有可能是前面异常引起的,本来这块没问题却因为你看到了某个异常去修改了,导致后面的问题越来越多,到最后所有的东西都乱了,根本就无从下手。 所以养成一个好的习惯是很有必要的。
分享到:
相关推荐
NULL 博文链接:https://123390255-qq-com.iteye.com/blog/1100047
严重: Context startup failed due to previous errors 2009-11-06 21:39:17 org.apache.catalina.core.StandardHostDeployer install 信息: Installing web application at context path /tomcat-docs from URL ...
严重: Context [/OAProject] startup failed due to previous errors 2009-8-29 14:02:25 org.apache.catalina.core.ApplicationContext log 信息: Closing Spring root WebApplicationContext log4j:WARN No ...
但是,在某些情况下,Tomcat 的详细错误日志可能会消失,只报一个万恶的 Context [] startup failed due to previous errors,却找不到 previous errors 具体是啥东西。这篇文章将为您介绍解决该问题的方法。 问题...
7. **严重:Exception starting filter struts2,Error filterStart,Context [/struts2] startup failed due to previous errors** 这个严重错误通常涉及到Struts2配置问题,可能的原因包括: - `struts.xml`中的...
display_startup_errors ; Default Value: Off ; Development Value: On ; Production Value: Off ; error_reporting ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED ; Development Value: E_...
It is up to the application to define what consistency means, and isolation in some form is needed to achieve consistent results. SQL Server uses locking to achieve isolation. Definition of ...
- Implemented Process Context ID (PCID) feature - Implemented FS/GS BASE access instructions support (according to document from http://software.intel.com/en-us/avx/) - Rewritten from scratch SMC ...