使用Spring的主题解析器和主题与Thymeleaf模板

时间:2012-09-04 11:25:49

标签: spring themes thymeleaf

我想在我的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>

1 个答案:

答案 0 :(得分:3)

我不认为您提出问题的时候就是这种情况,但是当前版本的thymeleaf-spring3(撰写本文时为2.0.18)是SpringStandard dialect个主题的一部分功能,可以这样使用:

<body th:style="'background-color: ' + ${#themes.code('backgroundColor')}">