簡體   English   中英

spring-boot 帶有 js 腳本的 thymleaf 錯誤

[英]spring-boot error in thymleaf with js scripts

我在我的 thymleaf 中包含了 .css 和 .js,如下所示:

<script src="/javascript/one.js"></script>
<script src="/javascript/two.js"></script>
<script src="/javascript/three.js"></script>

此錯誤出現在控制台中

2016-07-24 21:08:05 WARN  PageNotFound:1149 - No mapping found for HTTP request with         URI [/javascript/one.js] in DispatcherServlet with name 'dispatcherServlet'
2016-07-24 21:08:05 DEBUG DispatcherServlet:997 - Successfully completed request

我不知道我在哪里失蹤

在 thymleaf 你需要像這樣添加 javascript 源文件夾

 <script type="text/javascript" th:src="@{/javascript/one.js}"></script>
 <script type="text/javascript" th:src="@{/javascript/two.js}"></script>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM