tomcat中java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException錯誤

當我加載web應用時,發現會有java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException:這個錯誤。

原來是我的web.xml中出現了問題。

下面是我的web.xml文件部分內容。

<servlet>

<servlet-name>regeister</servlet-name>

<servlet-class>org.eblly.bean.Register</servlet-class>

</servlet>

<servlet-mapping>

<servlet-name>register</servlet-name>

<url-pattern>/register</url-pattern>

</servlet-mapping>

第一個<servlet-name> 與第二個<servlet-name>不匹配,導致錯誤。

tomcat中java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException錯誤,布布扣,bubuko.com

时间: 2024-08-05 07:07:09

tomcat中java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException錯誤的相关文章

java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException

异常情况: Tomcat启动时异常:java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException 异常内容: java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[

java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/xiaozao_web]]

二月 20, 2017 11:30:28 上午 org.apache.tomcat.util.digester.SetPropertiesRule begin警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:xiaozao_web' did not find a matching property.二月 20, 2

java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina]

本文为博主原创,未经允许不得转载: 被坑了好长时间的bug,差点就要重新配置环境,重新下载,重新开始的境遇.在此记录一下: 首先展示一下报错的异常: 19-Apr-2018 09:29:18.218 SEVERE [Catalina-startStop-1] org.apache.catalina.core.ContainerBase.startInternal A child container failed during start java.util.concurrent.Executio

java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext

java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext struts包版本不对 用2.3的相应包 用在2.5里面了 例如 2.5里加上 原文地址:https://www.cnblogs.com/tk55/p/8

java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start com

错误如题. 原因:web.xml中的servlet映射<url-pattern> 配置错误 修改正确即可.我直接删除了,bug就解决了. 还有一个问题是 xxx.jar fail to load.. 这种可能是项目工程lib包中的jar文件与tomcat自带的lib包中的jar文件重复导致的错误冲突,删除项目工程中相应的jar文件即可. 版权声明:本文为博主原创文章,转载请注明本博客地址!look to the master,follow the master,walk with the ma

java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleExcept问题解决方案

在部署Dynamic Web Project时,如果正确配置web.xml或者标注时,仍然出现以上异常的话,可以尝试以下内容讲解的方法: 首先,双击eclipse中的servers,位置如下图"1"所指. 检查位置"2"的General Infomation是否正确,以及位置"3"处的Servlet Path路径信息是否配置正确(一般情况下,正确设置Eclipse的Tomcat配置,这两项没有问题,正确的配置方法参见http://jingyan.

java.util.concurrent.ExecutionException

java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException? Last Updated on July 17th, 2017 by   App Shah  37 comments Are you getting below exception while running Spring MVC Project in Eclipse? Tomcat 7 is not starting when a w

Android Studio出现java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException的总结和解决方法

1.  Error:Execution failed for task 'mergeDebugAndroidTestResources'. > Error: java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException: 目前我见过的原因是手动改变了资源的后缀名造成的. 比如手动把logo.jpg改为logo.png,就会出现这种异常,因为实际上是jpg格式的图片,Android

2016.6.30 java.util.concurrent.ExecutionException java.lang.OutOfMemoryError

选中ccs项目后,选择debug on server,但是运行到一半,跳出错误: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: PermGen space 我就想,是不是我运行的web程序太多了,于是我就删掉了server下的其他项目,再次运行就成功了.