Java Spring Boot:如何将我的应用程序根目录(“/”)映射到索引.html?
2022-08-31 07:06:57
我是Java和Spring的新手。如何将我的应用程序根目录映射到静态?如果我导航到它的工作正常。http://localhost:8080/
index.html
http://localhost:8080/index.html
我的应用结构是:
我的样子是这样的:config\WebConfig.java
@Configuration
@EnableWebMvc
@ComponentScan
public class WebConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/**").addResourceLocations("/");
}
}
我试图添加,但它失败了。registry.addResourceHandler("/").addResourceLocations("/index.html");