Springboot集成thymeleaf
1.引入依赖
代码如下(示例):
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2.写controller
代码如下:
@RestController
@RequestMapping("/user")
public class UserController {
@RequestMapping(value = "/get",method = RequestMethod.GET)
public ModelAndView get(){
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("user/index");
modelAndView.addObject("name","哈哈");
return modelAndView;
}
}
3.从ThymeleafProperties源码可以看到,返回视图默认找到前缀为classpath:templates,后缀为.html的文件
如下图:
4.在resouces下面建一个文件夹templates,再建一个html文件
user/index.html代码如下:
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
欢迎【<a th:text="${name}"></a>】来到首页!
</body>
</html>
5.访问页面可以看到效果
如下图: