SpringBootthymeleaf模版⽀持,css,js等静态⽂件添加Thymeleaf引⼊
Thymeleaf是⼀个Java模板引擎开发库,可以处理和⽣成HTML、XML、JavaScript、CSS和⽂本,在Web和⾮Web环境下都可以正常⼯作。
1.添加依赖包
<dependency>
css和html和js怎么结合<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2.添加配置项⽬
# 模板配置
# 这个开发配置为false,避免改了模板还要重启服务器
spring.thymeleaf.cache=false
# 这个是配置模板路径的,默认就是templates,可不⽤配置
spring.thymeleaf.prefix=classpath:/templates/
# 这个可以不配置,检查模板位置
spring.thymeleaf.check-template-location=true
# 下⾯3个不做解释了,可以不配置
spring.thymeleaf.suffix=.html
ding=UTF-8
t-type=text/html
# 模板的模式
de=HTML5
3.添加
@RequestMapping("/list")
public String listUser(Model model) {
List<User> userList = new ArrayList<User>();
for (int i = 0; i <10; i++) {
userList.add(new User(i,"张三"+i,20+i,"中国⼴州"));
}
model.addAttribute("users", userList);
return "/user/list";
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论