在Spring Boot应用程序中以root用户身份(仅限root用户)提供index.html

时间:2016-08-13 16:42:28

标签: java spring-boot

我有一个Spring Boot应用程序,我在其中配置了一些静态资源:

@Configuration
public class MyConfig extends WebMvcConfigurerAdapter {
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/**")
                .addResourceLocations("classpath:/path/to/static/resources/");
    }
}

现在我想:

  1. " /"服务" index.html"来自资源文件夹和
  2. " /index.html"重定向到" /"
  3. 我该怎么做?

0 个答案:

没有答案