我是Java和Spring的新手。如何将我的应用程序根目录映射http://localhost:8080/到静态目录index.html?如果我导航到http://localhost:8080/index.html它的作品很好。
我的应用程序结构为:
rs
我的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");但是失败。
心有法竹
慕村9548890