Spring Boot 默认首页

   //继承  WebMvcConfigurerAdapter
  @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        registry.addViewController("/").setViewName("forward:/homeV/index.html");
        registry.setOrder(Ordered.HIGHEST_PRECEDENCE);
        super.addViewControllers(registry);
    }
原文地址:https://www.cnblogs.com/zxguan/p/8779432.html