1,添加jar
<!--themplates模板-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2,在 项目 src\main\resources\templates 下新建 login.html
3,在controller层跳转页面‘
@Controller //注意这里只能controller 不能RestController
@RequestMapping(value="/index")
public class IndexController {
@RequestMapping(value="/aa",method= RequestMethod.GET)
public String test(HttpServletRequest request) {
//逻辑处理
request.setAttribute("key", "hello world"); //向前台传参
return "login"; //跳转到页面
}
}
4,前台接受传参
<body>
themplates模板
[[${key}]] //接受的值
</body>
5,tmpl的html 读取静态配置的路径
![IMG_20190219_112736406.jpg](https://upload-images.jianshu.io/upload_images/12197462-9a7170a0e36221ca.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
<script src="/layui/layui.js"></script>
<link rel="stylesheet" th:href="@{/layui/css/layui.css}" media="all" >
<link rel="stylesheet" href="/layui/css/layui.css" media="all" >
这2 个方法都可以.因为layui在webapp下面 所以 去掉 wabapp 换成 / 下面就写全路径