spring boot 访问jsp页面,成下载文件

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/a919423654/article/details/87867027

原因是缺少jsp的依赖支持,添加就好

<dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
        </dependency>
        <!-- Need this to compile JSP -->
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>provided</scope>
        </dependency>

猜你喜欢

转载自blog.csdn.net/a919423654/article/details/87867027
今日推荐