我是thymeleaf的新手,必须将我的所有jsp文件转换为thymeleaf.Well我有一个外部类文件,如下所示:
public class Info{
public String filePath="http://localhost:8080/myapp/cssfolder";
}
现在我想将它包含在我的百里香css文件中,以便
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head>
<link href="${filePath}/StyleSheet.css" type="text/css" rel="stylesheet" />
</head>
<body> ... </body>
</html>
我还将值作为模型映射发送到我的controller.Sllll我没有得到linkpath中的filepath值。它只显示链接为&#34; {$ filePath} /StyleSheet.css"在运行页面时。请有人帮我这个
答案 0 :(得分:0)
你应该这样做:
<link th:href="${filePath}/stylesheet.css" href="static_url" type="text/css" rel="stylesheet" />
其中static_url
是HTML模型中的路径。