我想使用thymeleaf
创建页面。但我对静态文件有一些问题。我调查过类似问题的问题(1,2,3),但这对我没有帮助。
我在应用程序中使用Spring Boot
框架。
我的文件看起来像:
的test.html
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<script src="js/test.js" th:src="@{/test.js}"/>
</head>
<body>
<button onclick="testFunction('test value')">Button</button>
</body>
</html>
test.js
function testFunction(test) {
console.log(test);
}
配置类
@Configuration
@EnableWebMvc
public class WebMvcConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/**").addResourceLocations("classpath:/static/js/");
super.addResourceHandlers(registry);
}
}
问题,当我加载test.html
文件时未加载javascript。
@GetMapping(value = "web/test")
public String getTestHtmlPage() {
return "test";
}
/api/v1
是application.properties => server.servlet-path=/api/v1
我做错了什么?你能救我吗?
全部谢谢!
答案 0 :(得分:4)
为了更好地理解registry.addResourceHandler("/**").addResourceLocations("classpath:/static/js/");
我写了一篇更全面的answer here来讨论无效的资源位置映射。它没有收到任何赞成票,所以我希望它并不可怕。 : - )
简而言之,通过映射classpath:/static/js/
,然后访问/js/test.js
的方式,您告诉Spring查看/static/js/js/test.js
。
您可能想要的是classpath:/static/
。在这种情况下,当您尝试访问/js/test.js
时,它会在/static/js/test.js
中查找该文件。
至于Thymeleaf,我从未使用它,但文档表明您应该使用th:src
而不是th:href
加载脚本。 th:href
似乎仅适用于HTML内容。