今天在练习过程中,使用springboot跳转jsp页面时候,一个简单的页面出现问题

在浏览器上显示了<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> 

页面异常显示

最后解决,缺少jar包

在pom.xml文件中添加

        <dependency>
           <groupId>org.apache.tomcat.embed</groupId>
           <artifactId>tomcat-embed-jasper</artifactId>
        </dependency>

问题解决

页面异常显示

做记录

相关文章: