Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
In Total
관리 메뉴

A Joyful AI Research Journey🌳😊

Spring Boot: Thymeleaf URL 형태: th:href="@{/주소}" 본문

💻Bootcamp Self-Study Revision✨/Spring, Spring Boot, Java, SQL

Spring Boot: Thymeleaf URL 형태: th:href="@{/주소}"

yjyuwisely 2023. 4. 11. 07:00

230411

일반적인 URL은 <a hre="/주소">인 반면
Thymeleaf URL 형태는 다음과 같다.

th:href="@{/주소}"

내가 쓴 코드)

<nav>
    <ul>
        <li><a th:href="@{/login}">Login</a></li>
        <li><a th:href="@{/registration}">Register</a></li>
    </ul>
</nav>


 

728x90
반응형
Comments