<dependency>
<groupId></groupId>
<artifactId>-api</artifactId>
</dependency>
<dependency>
<groupId></groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId></groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
<dependency>
<groupId></groupId>
<artifactId>tomcat-jsp-api</artifactId>
</dependency>
缺少jsp解析的依赖,加上即可
如果还是不行,加上作用域
<dependency>
<groupId></groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>