spring boot 添加jsp支持注意事项

Posted wfじ★velsh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 添加jsp支持注意事项相关的知识,希望对你有一定的参考价值。


1.一定要使用war包
<packaging>war</packaging>

2.将provided改为compile,具体如下:
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>provided</scope>
        </dependency>
需要修改为
    <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>compile</scope>
        </dependency>

 










以上是关于spring boot 添加jsp支持注意事项的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 初体验(11)添加JSP支持

Spring Boot 添加JSP支持

Spring Boot 添加JSP支持

spring boot & jsp

spring-boot4

Spring boot 支持JSP 配置 有没有能够运行的实例