springboot极简教程006-使用JSP

2018/10/28 springboot 共 1169 字,约 4 分钟

JSP技术并不是springboot官方推荐的,官方推荐thymeleaf,但是可以简单了解一下。

添加依赖

注意:使用JSP时要在pom中关闭thymeleaf的引用。

<!-- servlet依赖. -->
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <scope>provided</scope>
</dependency>

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jstl</artifactId>
</dependency>

<!-- tomcat的支持.-->
<dependency>
    <groupId>org.apache.tomcat.embed</groupId>
    <artifactId>tomcat-embed-jasper</artifactId>
    <scope>provided</scope>
</dependency>

配置JSP加载路径及后缀

在application.yml中添加以下配置:

spring:
  mvc:
    view:
      prefix: /WEB-INF/jsp/
      suffix: .jsp

创建JSP文件

在src\main\下创建webapp\WEB-INF\jsp目录,然后在该目录下新建一个hello.jsp:

<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8" %>
Hi JSP 当前时间:${now}

添加Controller

注意: HelloController类上面的@Controller注解不能替换为@RestController,原因参见:springboot极简教程005-URL映射

@Controller
public class HelloController {
    @RequestMapping("/hello")
    private String hello(Model model) {
        model.addAttribute("now", DateFormat.getDateTimeInstance().format(new Date()));
        return "hello";
    }
}

文档信息

Search

    Table of Contents