Spring Boot入门——使用jsp

Posted Miss_wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot入门——使用jsp相关的知识,希望对你有一定的参考价值。

使用步骤:

1、创建Maven web project项目

    

2、在pom.xml文件中添加依赖

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.wyl</groupId>
  <artifactId>SpringBootJSPTest</artifactId>
  <packaging>war</packaging>
  <version>0.0.1-SNAPSHOT</version>
  <name>SpringBootJSPTest Maven Webapp</name>
  <url>http://maven.apache.org</url>
 
  <properties>
      <java.version>1.7</java.version>
  </properties>
 
  <parent>
      <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.3.RELEASE</version>
  </parent>
 
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    
    <!-- 引入tomcat相关依赖 -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-tomcat</artifactId>
        <scope>provided</scope>
    </dependency>
    <!-- tomcat-embed-jasper -->
    <dependency>
        <groupId>org.apache.tomcat.embed</groupId>
        <artifactId>tomcat-embed-jasper</artifactId>
    </dependency>
    
    <!-- 引入servlet依赖 -->
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>javax.servlet-api</artifactId>
        <scope>provided</scope>
    </dependency>
    
    <!-- 引入jstl标签库 -->
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>jstl</artifactId>
    </dependency>
    
    <!-- devtools插件,热部署 -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <optional>true</optional>
        <scope>true</scope>
    </dependency>
    
  </dependencies>

  <build>
      <finalName>SpringBootJSPTest</finalName>
  </build>
</project>

3、配置application.properties支持jsp

spring.mvc.view.prefix=/WEB-INF/jsp/

spring.mvc.view.suffix=.jsp

4、编写测试controller

@Controller
public class JSPController {

    @RequestMapping("indexJsp")
    public String index(Map<String, Object> map){
        map.put("hello", "There is jspIndex!");
        return "/index"; //映射的是/WEB-INF/jsp/index.jsp页面 } }

5、编写jsp页面

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
    helloJsp
    ${hello}
</body>
</html>

 6、运行结果

  

以上是关于Spring Boot入门——使用jsp的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 入门之 Web 篇

Spring boot:thymeleaf 没有正确渲染片段

spring boot + vue + element-ui全栈开发入门——开篇

Spring Boot入门系列六( SpringBoot 整合thymeleaf)

Spring boot 使用了 thymeleaf模板后,再配置jsp就不好用了,难道使用了thymeleaf 不能用jsp了?

Spring boot:如何将thymeleaf转换为jsp