5.Url表达式-thymeleaf

2022-06-28 19:43:18 浏览数 (1)

本文最后更新于 909 天前,其中的信息可能已经有所发展或是发生改变。

th:href

代码语言:javascript复制
<a th:href="@{http://www.baidu.com}">绝对路径</a><br/>
<a th:href="@{/show5}">相对路径,相对于当前项目的根,相对于项目的上下文的相对路径</a><br/>
<a th:href="@{~/project2/resourcename}">相对于服务器的根</a><br/>
<a th:href="@{/show5(id=1,name=zhagnsan)}">相对路径-传参</a><br/>
<a th:href="@{/restful/54212}"> 相 对 路 径 - 传 参-restful</a><br/>

restful-controller

代码语言:javascript复制
@RequestMapping("restful/{id}")
@ResponseBody
public String showInfo6(@PathVariable Integer id){
    System.out.println("restful id:" id);
    return "id:" id;
}

Post Views: 2,549

0 人点赞