• 需求:在测试Spring MVC的时候使用到了JSP,这个时候报错如下:
  • Spring Boot解决jsp中jstl标签无法使用问题_mvc

  • 解决方法:
    加入以下依赖:
<!--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>
<!--Web开发包,将载入Spring MVC所需要的包,且内嵌tomcat-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
  • 效果:
  • Spring Boot解决jsp中jstl标签无法使用问题_spring_02