springmvc转springboot过程中访问jsp报Whitelabel Error Page错误

前言:

虽然springboot内嵌了一个tomcat,但是这个内嵌的tomcat不支持jsp页面,所以需要引入其他包

解决:

maven引入以下包即可

<dependency>
     <groupId>org.apache.tomcat.embed</groupId>
     <artifactId>tomcat-embed-jasper</artifactId>
     <scope>provided</scope>
</dependency>
原文地址:https://www.cnblogs.com/hellxz/p/8764429.html