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>
原文地址:https://www.cnblogs.com/itlaoqi/p/11391797.html
时间: 2024-10-11 20:54:32