我想在我的 Thymeleaf 模板中使用 Spring 主题解析器的功能(请参阅:此处)。
Thymeleaf 与 spring:theme 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>