(8)spring boot使用thymeleaf模板引擎

时间:2022-11-17 18:26:46

1. 项目结构

(8)spring boot使用thymeleaf模板引擎

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

<!-- 添加thymeleaf依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
3. 在application.properties中添加thymeleaf配置

#spring.thymeleaf.prefix=classpath:/templates/
#spring.thymeleaf.suffix=.html
#spring.thymeleaf.mode=HTML5
#;charset=<encoding> is added
#spring.thymeleaf.content-type=text/html
#设置thymeleaf的缓存是否关闭,开发阶段建议关闭
spring.thymeleaf.cache=false
4. 在src/main/resources/templates/添加hello.html,内容如下:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Insert title here</title>
</head>
<body>
Hello,<span th:text="${nameKey}"></span>
</body>
</html>
5. 编写TemplatesController

package com.lanhuigu;

import java.util.Map;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* 注意: 这个地方使用的是@Controller,而不是@RestController,用的是spring MVC逻辑,
* 在spring MVC中,需要在spring mvc配置的视图解析器中指定视图文件位置,spring boot使用
* thymeleaf等于将视图地址默认在src/main/resources/templates下了
*/
@Controller
@RequestMapping("/templates")
public class TemplatesController {

@RequestMapping("/helloHtml")
public String helloHtml(Map<String,Object> map) {
map.put("nameKey", "Thymeleaf");
return "hello";
}
}
6. 编写启动类App

package com.lanhuigu;



import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;


/**
* Hello world!
* 启动类
*/
@SpringBootApplication
public class App {

public static void main( String[] args ) {
/*System.out.println( "Hello World!" );*/
SpringApplication.run(App.class, args);
}
}
7. 启动服务访问,默认端口8080

(8)spring boot使用thymeleaf模板引擎