Thymeleaf中的@ {..}表达式是什么

时间:2019-03-10 06:37:45

标签: spring-boot thymeleaf

<html>
<head>
<title>Reading List</title>
<link rel="stylesheet" th:href="@{/style.css}"></link>
</head>

虽然我正在开发一个Spring Boot项目,但根据某些要求,我想使用thymeleaf添加/加载一些静态资源内容。而在使用thymeleaf标签加载/引用css文件时。

  

th:href =“ @ {/ style.css}

任何人都可以向我解释为什么我们使用表达式'@'吗?

1 个答案:

答案 0 :(得分:0)

这是一个link expressions

  

链接表达式,Thymeleaf标准表达式的一种:@{...}

只需将@放在链接之前,以使Thymeleaf将表达式识别为链接

特别是您使用的是上下文相关的URL

  

上下文相关的URL以/

开头