springboot集成jsp
Posted chenwh_123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot集成jsp相关的知识,希望对你有一定的参考价值。
springboot集成jsp需要的依赖如下:
<!--配置servlet-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<!--配置jsp jstl的支持-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<!--对jsp的支持-->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
以上是关于springboot集成jsp的主要内容,如果未能解决你的问题,请参考以下文章