我是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");
但是失败。
http://localhost:8080/appName
但不是我所需要的...