通过maven命令启动maven web项目报错:org.apache.jasper.JasperException: Unable to compile class for JSP:

这种情况下通过本地tomcat启动是正常不会报错的,问题是缺少了tomcat插件:

<build>
	<!-- 配置Tomcat插件 -->
	<plugins>
		<plugin>
			<groupId>org.apache.tomcat.maven</groupId>
			<artifactId>tomcat7-maven-plugin</artifactId>
			<configuration>
				<path>/</path>
				<port>8080</port>
			</configuration>
		</plugin>
	</plugins>	    
</build>

 通过maven tomcat7:run 启动成功

ps:maven 搭建的web项目用elipse工具可以通过maven和本地服务两种方式启动,但是idea我却只能通过maven启动,本地服务启动报404,一直没找到原因,暂时记录。

posted @ 2020-06-06 20:14  简单好le  阅读(145)  评论(0编辑  收藏  举报