sm 기술 블로그

[스프링 부트] 타임리프 URL 본문

스프링부트

[스프링 부트] 타임리프 URL

sm_hope 2022. 7. 10. 20:37

기본

입력값

<a th:href="@{http://www.thymeleaf/documentation.html}">

인식값

<a href="http://www.thymeleaf/documentation.html">

내용관련

입력값

<a th:href="@{/order/list}">

인식값

<a href="/myapp/order/list">

서버 관련

입력값

<a th:href="@{~/billing-app/showDetails.htm}">

인식값

<a href="/billing-app/showDetails.htm">

프로토콜 관련

입력값

<script th:src="@{//scriptserver.example.net/myscript.js}">...</script>

인식값

<script src="//scriptserver.example.net/myscript.js">...</script>

추가 파라미터

입력값

<a th:href="@{/order/details(id=3)}">

인식값

<a href="/order/details?id=3">

입력값

<a th:href="@{/order/details(id=3,action='show_all')}">

인식값

<a href="/order/details?id=3&amp;action=show_all">

입력값

<a th:href="@{/order/{id}/details(id=3,action='show_all')}">

인식값

<a href="/order/3/details?action=show_all">

추가

Comments