SpringBoot中Thymeleaf自定义配置项

Posted itlaoqi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot中Thymeleaf自定义配置项相关的知识,希望对你有一定的参考价值。

SpringBoot中Thymeleaf自定义配置项

SpringBoot在模板引擎中支持Thymeleaf自定义可配置项,其配置文件名必须是messages.properties


学习视频: http://www.itlaoqi.com/chapter/1688.html

源码地址: QQ群 814077650 , 群共享中自助下载

老齐的官网: itlaoqi.com (更多干货就在其中)


messages.properties

app.report.name=SAMDI上海分公司员工信息表
app.website=http://www.itlaoqi.com

html中引用

<!-- th:text代表将内容输出到标签体 -->
<!-- #app.report.name #代表读取messages.properties相应的属性 -->
<h1 style="text-align: center" th:text="#app.report.name"></h1>
<h2 th:text="#app.website"></h2>

以上是关于SpringBoot中Thymeleaf自定义配置项的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot Security 整合thymeleaf模板自定义登录页面,按需提示错误信息

Shiro整合Springboot之thymeleaf模板

SpringBoot2中使用thymeleaf3自定义分页方言

springboot 学习 —— springboot 2.x ,thymeleaf 自定义 select 标签

springboot 学习 —— springboot 2.x ,thymeleaf 自定义 select 标签

springboot thymeleaf 需要使用data-*,自定义属性,获取值怎么操作