Spring Boot Web 项目添加 jsp 支持,
pom.xml 必须添加 Tomcat 依赖
<!-- Provided -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
否则启动时输出中显示 map 成功了,
但是访问的时候会出现 404 错误。