[Spring Boot]thymeleafでcssとjsファイルを使用する方法

構文
th:href="@{cssファイル}"
th:src="@{jsファイル}"

使用例
1.src/main/resources/templates/「htmlファイル」
例 index.html
2.src/main/resources/static/css/「CSSファイル」
例 content.css
3.src/main/resources/static/js/「jsファイル」
例test.js

サンプルコード(index.html)

<link th:href="@{/css/content.css}" rel="stylesheet" type="text/css"/>
<script th:src="@{/js/test.js}"></script>

 

Spring Boot

Posted by arkgame