JavaWebServlet错误
Posted 老王同鞋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaWebServlet错误相关的知识,希望对你有一定的参考价值。
org.apache.jasper.JasperException: Unable to compile class for JSP:
因为maven默认tomcat插件版本是tomcat6我的jdk是1.8所以需要更换tomcat版本到7以上
添加tomcat7插件
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
</plugin>
添加JDK1.8插件
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
使用tomcat7:run运行即可
以上是关于JavaWebServlet错误的主要内容,如果未能解决你的问题,请参考以下文章