java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException 错误解决

TomCat启动报错java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException 错误解决

解决错误:

搜索:eclips使用快件Ctrl+Shift+r 搜索 目录.settings\org.eclipse.wst.common.project.facet.core.xml文件中jst.web的version从3.0降低到2.5就可以了

<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
  <runtime name="Apache Tomcat v7.0"/>
  <fixed facet="wst.jsdt.web"/>
  <installed facet="java" version="1.7"/>
  <installed facet="jst.web" version="2.5"/><!--3.0修改2.5保存运行 -->
  <installed facet="wst.jsdt.web" version="1.0"/>
</faceted-project>

重新运行TomCat就可以了

猜你喜欢

转载自www.cnblogs.com/xpx951201/p/10420068.html