springboot无法解析jsp

由于springboot内置的tomcat不支持JSP,所以需要导入额外的包

<dependency>
	<groupId>org.apache.tomcat.embed</groupId>
	<artifactId>tomcat-embed-jasper</artifactId>
	<scope>provided</scope>
</dependency>

猜你喜欢

转载自blog.csdn.net/qq_39158142/article/details/80488137