Spring Boot thymeleaf 模板使用(二)

本文介绍Spring Boot thymeleaf 基础使用,thymeleaf模板引擎是Spring Boot推荐使用的引擎。

  • Thymeleaf 介绍

Thymeleaf是一款用于渲染XML/XHTML/HTML5内容的模板引擎。类似JSP,Velocity,FreeMaker等,它也可以轻易的与Spring MVC等Web框架进行集成作为Web应用的模板引擎。与其它模板引擎相比,Thymeleaf最大的特点是能够直接在浏览器中打开并正确显示模板页面,而不需要启动整个Web应用。

快速开始

本文介绍快速搭建一个demo,并提供简单的服务。
源码下载:https://github.com/fallsea/springboot/tree/master/spring-boot-1

环境依赖 jdk1.7 Spring Boot 1.5.8.RELEASE

使用maven构建项目

可以使用spring提供的地址,快速构建一个基础环境
快速构建地址:https://start.spring.io/

构建成功后,解压压缩包,导入eclipse环境。

项目结构分析

  • SpringBoot1Application ,Spring Boot服务启动类
  • application.properties,Spring Boot配置文件
  • SpringBoot1ApplicationTests,测试类

开发一个demo

  1. pom引入 spring-boot-starter-web 模块
1
2
3
4
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
  1. 新建一个 com.fallsea.springboot1.controller 包路径
  2. 新建java类 DemoController.java ,内容如下:
1
2
3
4
5
6
7
@RestController
public class DemoController {
@RequestMapping("/hello")
public String hello() {
return "hello fallsea";
}
}
  1. 启动服务,执行 SpringBoot1Application
  1. 浏览器打开 http://localhost:8080/hello 查看访问结果

pom引用分析

  • spring-boot-starter 核心模块,包括自动配置支持、日志等
  • spring-boot-starter-test 测试模块,包括JUnit等
  • spring-boot-starter-web web模块