美文网首页
spring boot添加jsp支持

spring boot添加jsp支持

作者: 你笑时很美丶 | 来源:发表于2018-11-16 11:22 被阅读0次

pom.xml新增依赖:

<!-- 引入jsp -->
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>provided</scope>
        </dependency>
        <!-- 引入jstl-->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
        </dependency>
file-Project structure,选中Web
关联好之后,jsp放入webapp就可以了

相关文章

网友评论

      本文标题:spring boot添加jsp支持

      本文链接:https://www.haomeiwen.com/subject/ubwpfqtx.html