Springboot访问jsp页面但是却变成下载该页面

时间:2025-03-19 07:27:05
<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>