欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot使用jsp

程序员文章站 2022-05-26 10:01:20
...

引入坐标

 <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
        </dependency>
        <dependency>
            <groupId>jstl</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
server.port=8888
server.servlet.context-path=/shiro
spring.application.name=shiro

spring.mvc.view.prefix=/
spring.mvc.view.suffix=.jsp

在main目录新建webapp
springboot使用jsp
防止页面乱码

<%@page contentType="text/html; UTF-8" pageEncoding="UTF-8" isELIgnored="false" %>
相关标签: Springboot jsp