我正在配置一个Spring Boot应用程序来提供静态html,js,css文件
@Configuration
@EnableWebMvc
public class WebConfig implements WebMvcConfigurer {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/").addResourceLocations("classpath:src/main/resources/static/index.html");
}
}
该html文件位于资源/静态文件夹中
<html lang="en">
<script type="text/javascript" src="./js/bundle.js"></script></body>
</html>
资源文件夹的结构:
resources/static/js/bundle.js
resources/static/index.html
当我访问localhost:3000 /时,浏览器无法识别bundle.js文件。如何配置资源处理程序以处理bundle.js文件?