반응형
코드로 대체함
<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(예시)
반응형
'IT > development' 카테고리의 다른 글
[JavaScript] 날짜 사이 일수 계산 (0) | 2023.04.29 |
---|---|
[thyemeleaf] form 검색값 유지 (0) | 2023.04.26 |
[thyemeleaf] select option값 list loop (0) | 2023.04.26 |
INSERT/UPDATE template(feat. 엑셀 CONCATENATE) (0) | 2023.03.05 |
[java] list의 null 체크(ObjectUtils.isEmpty()) (0) | 2023.02.12 |