IT/development

[thyemeleaf] get ๋ฐฉ์‹ parameter๊ฐ’ ๋ถ™์ด๊ธฐ

์•Œ ์ˆ˜ ์—†๋Š” ์‚ฌ์šฉ์ž 2023. 4. 26.

์ฝ”๋“œ๋กœ ๋Œ€์ฒดํ•จ

<tr th:if="${#lists.size(list) > 0}" th:each="list : ${list}">
    <td th:text="${list.no}"></td>
    <td><a th:href="@{user/view(empId=${list.empId}, empSno=${list.empSno})}" th:text="${list.empNm}"></a></td>
    <td th:text="${list.empId}"></td>
</tr>
<a th:href="@{user/view(empId=${list.empId}, empSno=${list.empSno})}" th:text="${list.empNm}"></a>

์•„๋ž˜์™€ ๊ฐ™์€ URL์ด ์ƒ์„ฑ๋œ๋‹ค.(empId, empSno๋Š” ์„œ๋ฒ„์—์„œ ๊ฐ€์ ธ์˜จ ๊ฐ’)

localhost:8080/user/view?empId=test&empSno=1(์˜ˆ์‹œ)

๋Œ“๊ธ€