我想在我的Thymeleaf模板中使用Spring主题解析器的功能(请参阅:here)。
什么是Thymeleaf相当于spring:主题JSP标签?
请参阅下面的JSP代码示例:
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<html>
<head>
<link rel="stylesheet" href="<spring:theme code='styleSheet'/>" type="text/css"/>
</head>
<body style="background=<spring:theme code='background'/>">
...
</body>
</html>
答案 0 :(得分:3)
我不认为您提出问题的时候就是这种情况,但是当前版本的thymeleaf-spring3(撰写本文时为2.0.18)是SpringStandard dialect个主题的一部分功能,可以这样使用:
<body th:style="'background-color: ' + ${#themes.code('backgroundColor')}">