如何在春季启动时设置js路径

时间:2019-05-15 10:17:18

标签: spring-boot thymeleaf

我有一个基本的spring boot项目结构,在资源中这是我的文件夹结构:

resources
-> templates
--> static
---> post.js
-> recover.html

在我的恢复html中:

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

,但内容仍未加载,原因是这不是正确的路径。我读过其他类似的问题,但是我仍然不明白如何为post.js选择正确的路径

1 个答案:

答案 0 :(得分:0)

您应该遵循以下构造方法:

-resources
    --static
        ---post.js 

    --templates

和脚本 src

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