Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 288 Bytes

Thymeleaf PathVariable, Query String.md

File metadata and controls

15 lines (10 loc) · 288 Bytes

Thymeleaf PathVariable, Query String 사용 법

PathVariable:

<a th:href="@{/user/{userId}/test(userId = ${data.userId})}">

QueryString

<a th th:href="@{/user/details(userId=${data.userId})}"></a>