其他
玩转springboot2.x之使用JSP篇
优秀文章,第一时间收到!
文章已获得原作者授权,原文地址:
https://zhuoqianmingyue.blog.csdn.net/article/details/83149069
序言
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内容:
jsp 文件内容如下:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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;
()
public class JspController {
("/jsp")
public String toJps(Model model) {
model.addAttribute("welcome", "不建议使用jsp");
return "welcome";
}
}
测试结果:
参考文献:
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
●玩转springboot2.x之自定义Filter过滤器篇
●玩转springboot2.x之使用SpringDateJpa篇
●玩转springboot2.x之搭建Actuator和spring boot admin监控篇
●玩转springboot2.x之IntellJ IDEA快速搭建
喜欢本文的朋友们,欢迎关注订阅号Java学习之道,收看更多精彩内容!
一起