springboot+mysql+thymeleaf前端的具体该怎么写..只有后端操作额
这个结合thymeleaf具体该怎么写啊,满满的都是疑问。配合前端的话不是很会...
这个结合thymeleaf具体该怎么写啊,满满的都是疑问。配合前端的话不是很会...
2017-01-04
在pom.xml中添加一个依赖,
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
Controller中一样的写法,
@RequestMapping("/hello/{name}")
public String hello(@PathVariable("name") String name,Model model){
model.addAttribute("name",name);
return "hello";
}
在maven项目的src/main/resources/templates下添加hello.html,写法如下:
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
<title>Getting Started:Serving Web Content</title>
</head>
<body>
<p th:text = "'Hello, ' + ${name} + '!'"/>
</body>
</html>
注意1.xmlns:th="http://www.thymeleaf.org"要写上。
举报