`
Angelialily
  • 浏览: 241576 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论

Context startup failed due to previous errors

阅读更多

严重: Context [/app] startup failed due to previous errors

这个异常在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目录下的文件 ,重启服务器。 这里主要考滤的是缓存的问题。

当然还有其它的可能性,这里就不一一列出了。

但有一点我们要记住了,当出现较比异常时,一定要从第一个异常开始解决,反对跳越式的处理异常。

因为后面的异常极有可能是前面异常引起的,本来这块没问题却因为你看到了某个异常去修改了,导致后面的问题越来越多,到最后所有的东西都乱了,根本就无从下手。 所以养成一个好的习惯是很有必要的。

分享到:
评论

相关推荐

    Tomcat xalan包冲突导Error filterStart Context startup failed due to previous errors

    NULL 博文链接:https://123390255-qq-com.iteye.com/blog/1100047

    tomcat排错经典案例之404.docx

    严重: 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 ...

    Tomcat 不显示详细日志的问题

    但是,在某些情况下,Tomcat 的详细错误日志可能会消失,只报一个万恶的 Context [] startup failed due to previous errors,却找不到 previous errors 具体是啥东西。这篇文章将为您介绍解决该问题的方法。 问题...

    struts2开发遇到的问题

    7. **严重:Exception starting filter struts2,Error filterStart,Context [/struts2] startup failed due to previous errors** 这个严重错误通常涉及到Struts2配置问题,可能的原因包括: - `struts.xml`中的...

    struts2驱动包

    严重: 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 ...

    微软内部资料-SQL性能优化3

    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 ...

    php.ini-development

    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_...

    Bochs - The cross platform IA-32 (x86) emulator

    - 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 ...

Global site tag (gtag.js) - Google Analytics