转载自:http://blog.csdn.net/imlanbin/article/details/44195627

转载java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleExceptio 
解决: 
工程目录.settings\org.eclipse.wst.common.project.facet.core.xml文件中jst.web的version降低到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.6"/>
  <installed facet="jst.web" version="2.5"/><!--这里!-->
  <installed facet="wst.jsdt.web" version="1.0"/>
</faceted-project>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

不要问我为什么,我也不知道,反正这么做就解决了

相关文章:

  • 2021-09-11
  • 2021-06-03
  • 2021-09-27
  • 2021-04-16
  • 2021-11-09
  • 2022-12-23
猜你喜欢
  • 2021-07-15
  • 2021-08-01
  • 2021-12-09
  • 2021-11-11
相关资源
相似解决方案