thymeleaf获取获取链接
时间: 2024-01-15 14:05:48 浏览: 82
Thymeleaf的图书馆管理系统Demo模版
如果你想在Thymeleaf中获取一个链接,可以使用th:href属性。例如,假设你有一个控制器方法定义为:
```
@GetMapping("/hello")
public String hello(Model model) {
model.addAttribute("message", "Hello World!");
return "hello";
}
```
然后,在Thymeleaf模板中,你可以这样使用th:href:
```
<a th:href="@{/hello}">Say Hello!</a>
```
这将生成一个指向/hello的链接。注意,@符号是一个Thymeleaf的内置表达式,用于生成链接。花括号中的内容是Spring MVC的路径映射语法。
阅读全文