我有一个简单的Spring Boot应用程序,正在尝试添加Thymeleaf。我的应用程序的基本结构可用here。
基本上,当我尝试在模板中呈现以下内容时...
<h1>[[${key}]]</h1>
效果完美!但是,当我尝试...
<script src="https://my.api.com/api/js?key=${key}" />
${key}
未被替换。我想念什么?
答案 0 :(得分:2)
如果您希望Thymeleaf解析属性,则必须在其前面加上assignee_address = Tokyo; JP
primary_names = Adams; Russell
secondary_names Nguyen; Hung Henry
。
th:
或
<script th:src="|https://my.api.com/api/js?key=${key}|" />