码迷,mamicode.com
首页 > 其他好文 > 详细

Thymeleaf

时间:2020-01-21 00:25:48      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:utf-8   context   ext   htm   framework   artifact   www   头文件   art   

Thymeleaf

一、入门启动

  • 流程:添加pom依赖-添加控制器-html添加头文件-编辑properties文件

  • pom依赖
<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-thymeleaf</artifactId> 
</dependency>

  • 控制器

  • html修改
  1. 声明当前文件为thymeleaf
  2. 前端文件存于templates中
<html xmlns:th="http://www.thymeleaf.org">

  • properties
#thymeleaf 配置
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
#缓存设置为false, 这样修改之后马上生效,便于调试
spring.thymeleaf.cache=false
#上下文
server.context-path=/thymeleaf

Thymeleaf

标签:utf-8   context   ext   htm   framework   artifact   www   头文件   art   

原文地址:https://www.cnblogs.com/KSea/p/12219839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!