2.改造项目为Spring Boot项目
在demo06的pom.xml文件中添加干系依赖和插件。
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.5.RELEASE</version> <relativePath/> <!-- lookup parent from repository --></parent><build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins></build>
3. 添加web干系依赖
在pom.xml文件中添加web和jsp等干系依赖包.
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- servlet 依赖. --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency></dependencies>
4. 在application.properties中配置支持jsp
在application.properties配置文件中设置逻辑视图名配置信息,添加对jsp的支持,配置jsp模板文件存放路径.
spring.mvc.view.prefix=/WEB-INF/jsp/spring.mvc.view.suffix=.jsp
5.创建webapp目录
在src\main\目录下手动创建出一个新的目录webapp\WEB-INF\jsp\
6. 创建jsp页面
在src\main\目录下创建新的目录webapp\WEB-INF\jsp\,在jsp目录下面创建一个index.jsp文件.
<%@ page contentType="text/html;charset=UTF-8" language="java" %><!DOCTYPE HTML><%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%><html><head> <meta charset="UTF-8"> <title>Boot支持JSP!</title></head><body><h2>Hello ${msg}</h2></body></html>
7. 创建一个controller类
package com.yyg.boot.web;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.GetMapping;/ Spring Boot中支持jsp功能的实现 /@Controllerpublic class JspController { @GetMapping("/index") public String index(Model model) { model.addAttribute("msg","跟逐一哥学习SpringBoot中利用JSP功能!"); //要跳转到的页面视图名称 return "index"; }}
8. 创建启动类
在项目根目录com.yyg.boot下创建启动类
@SpringBootApplicationpublic class JspApplication { //把稳:不要直接启动该类,要以spring-boot:run命令办法启动才行,否则404!!! public static void main(String[] args) { SpringApplication.run(JspApplication.class, args); }}
把稳:
不要直接在入口类中启动该类,要以spring-boot:run命令办法启动才行,否则会产生404非常!!!
9. 启动项目
不要直接以启动类的办法来启动项目,要以spring-boot:run命令办法启动才行,否则404!!!
10. 运行结果
可以看到能够正常访问jsp页面.
把稳:
要以spring-boot:run命令办法启动!!!
11. 全体项目目录构造