thymeleaf的配置与使用

thymeleaf是什么

简单来说,thymeleaf就是一个模板,可以代替jsp的模板。

以下为常用标签示例

<!--th:action    定义后台控制器的路径 -->
<form id="login" th:action="@{/login}">......</form>
<!--循环List集合: iterStat:下标 -->
<tr th:each="user,iterStat : ${list}"> <td th:text="${user.userName}">Onions</td> </tr>
<!--这样循环也是可以的-->
<tr th:each="list: ${List}"> <td th:text="${user.userName}"></td></tr>
<!--循环Map集合: -->
<div th:each="mapS:${map}"> <div th:text="${mapS}"></div> </div>
<!--循环数组: -->
<div th:each="arrayS:${arrays}"> <div th:text="${arrayS}"></div> </div>
 <div th:href="@{/css/1.css}"></div>
 <!--th:src  外部资源引入 -->
 <script th:src="@{/static/js/jquery-2.4.min.js}"></script> 
 <!--th:if -->
 <span th:if="${Sex} == 1" > <input type="redio" name="se" th:value="男" /> </span> 
 <span th:if="${Sex} == 2"> <input type="redio" name="se" th:value="女" /> </span>
 <!--条件判断可以这样写 -->
 <input th:text="(${user.isAdmin}?'管理员':'普通用户')"></input>
 <!--th:unless 非 即判读结果加上非 -->
 <div th:unless="${#lists.isEmpty(books)}"></div>
 <!--页面取值 -->
 <p th:text="#{message}">default message</p>
 <!--js取值 -->
 <script th:inline="javascript">
    var message = [[${message}]];
    console.log(message);
 </script>

以下为配置thymeleaf的各种属性,以及各种属性的作用

#spring.thymeleaf.cache = true #启用模板缓存。 
#spring.thymeleaf.check-template = true #在呈现模板之前检查模板是否存在。
#spring.thymeleaf.check-template-location = true #检查模板位置是否存在。
#spring.thymeleaf.content-type = text / html #Content-Type值。 
#spring.thymeleaf.enabled = true #启用MVC Thymeleaf视图分辨率。 
#spring.thymeleaf.encoding = UTF-8 #模板编码。 
#spring.thymeleaf.excluded-view-names = #应该从解决方案中排除的视图名称的逗号分隔列表。 
#spring.thymeleaf.mode = HTML5 #应用于模板的模板模式。另请参见StandardTemplateModeHandlers。 
#spring.thymeleaf.prefix = classpath:/ templates / #在构建URL时预先查看名称的前缀。 
#spring.thymeleaf.suffix = .html #构建URL时附加到查看名称的后缀。 
#spring.thymeleaf.template-resolver-order = #链中模板解析器的顺序。 
#spring.thymeleaf.view-names = #可以解析的视图名称的逗号分隔列表。/ templates / #在构建URL时先查看名称的前缀。 
#spring.thymeleaf.suffix = .html #构建URL时附加到查看名称的后缀。 
#spring.thymeleaf.template-resolver-order = #链中模板解析器的顺序。 
#spring.thymeleaf.view-names = #可以解析的视图名称的逗号分隔列表。/ templates / #在构建URL时先查看名称的前缀。 
#spring.thymeleaf.suffix = .html #构建URL时附加到查看名称的后缀。 
#spring.thymeleaf.template-resolver-order = #链中模板解析器的顺序。 
#spring.thymeleaf.view-names = #可以解析的视图名称的逗号分隔列表。

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Thymeleaf配置使用主要有以下几个步骤: 1. 在Spring Boot的配置文件(application.properties或application.yml)中添加Thymeleaf模板的配置。这些配置可以覆盖默认的配置。例如,可以设置模板文件的路径、后缀、编码、缓存等信息。比如: ``` # Thymeleaf模板配置 spring.thymeleaf.prefix=classpath:/templates/ spring.thymeleaf.suffix=.html spring.thymeleaf.mode=HTML5 spring.thymeleaf.encoding=UTF-8 spring.thymeleaf.cache=false ``` 其中,`spring.thymeleaf.prefix`用于指定模板文件的路径,`spring.thymeleaf.suffix`用于指定模板文件的后缀,`spring.thymeleaf.encoding`用于指定模板文件的编码方式,`spring.thymeleaf.cache`用于指定是否启用缓存。 2. 在项目的pom.xml文件中添加Thymeleaf的依赖。可以使用`spring-boot-starter-thymeleaf`作为依赖,例如: ``` <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> ``` 3. 编写Controller类,处理请求并返回相应的视图。在方法上使用`@RequestMapping`注解可以指定请求的URL路径,然后通过`ModelAndView`对象设置视图名和模型数据。例如: ``` @RequestMapping(value = "/greeting") public ModelAndView test(ModelAndView mv) { mv.setViewName("/greeting"); mv.addObject("title","欢迎使用Thymeleaf!"); return mv; } ``` 4. 在项目的资源目录下创建Thymeleaf的模板文件。在模板文件中可以使用Thymeleaf的语法进行动态内容的渲染。例如: ``` <!DOCTYPE HTML> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"> <head> <title>Getting Started: Serving Web Content</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link th:href="@{/css/1.css}" rel="stylesheet"/> </head> <body> <p th:text="'Hello, ' + ${title}" /><br/> <script th:src="@{/js/jquery/1.11.0/jquery.js}"></script> <script> $(function(){ alert("page load finish."); }); </script> </body> </html> ``` 其中,`th:text`用于动态设置内容,`th:href`用于指定CSS文件的路径,`th:src`用于指定JavaScript文件的路径。 以上就是Thymeleaf配置使用步骤。通过配置文件设置Thymeleaf的模板路径、后缀、编码、缓存等信息,然后在Controller中指定视图和模型数据,最后在模板文件中使用Thymeleaf的语法进行内容的渲染。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [Springboot+Thymeleaf配置使用](https://blog.csdn.net/m0_67393619/article/details/126509573)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值