玩转springboot2.x 之 使用JSP篇-如何打开jsp文件

作者:桌前明月

链接:https://mp.weixin.qq.com/s/6SS2LhEgLLXsvMepNiP9Ig

序言

SpringBoot 使用 jsp 步骤快速介绍:

1、引入 spring-boot-starter-tomcat 依赖 并且 scope为 provided

2、在配置文件中将视图设置成jsp

3、创建src/main/webapp 目录下创建 WEB-INF 目录并在该目录下创建 jsp 文件

4、创建访问 jsp 的 controller

5、进行测试

springboot 使用jsp操作详细步骤

1、在pom.xml 添加支持Jsp 视图的依赖

<!-- 非必选 --> 
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<!-- Provided 编译和测试的时候使用-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<!-- 对jsp的支持的依赖 -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>

2、application.properties 配置文件需要配置的信息

server.port=8080
server.servlet.context-path=/sbe
spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp

3、创建src/main/webapp 目录并在该目录创建jsp

添加的路径位置 和jsp内容:

玩转springboot2.x 之 使用JSP篇

jsp 文件内容如下:

< page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"gt;
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
${welcome}
</body>
</html>

4、创建访问jsp页面的Controller

package cn.lijunkui.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping()
public class JspController {
@RequestMapping("/jsp")
public String toJps(Model model) {
model.addAttribute("welcome", "不建议使用jsp");
return "welcome";
}
}

测试结果:

玩转springboot2.x 之 使用JSP篇

参考文献:

https://github.com/spring-projects/spring-boot/tree/v2.0.6.RELEASE/spring-boot-samples/spring-boot-sample-web-jsp 

项目源码地址:

https://github.com/zhuoqianmingyue/springbootexamples

推荐阅读