Я новичок в 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");
, но он не работает.