SpringBoot设置默认首页

新建一个类继承WebMvcConfigurerAdapter
重写addViewControllers方法即可

import org.springframework.context.annotation.Configuration;
import org.springframework.core.Ordered;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

@Configuration
public class DefaultPageConfig extends WebMvcConfigurerAdapter {

    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        registry.addViewController("/").setViewName("index");
        registry.setOrder(Ordered.HIGHEST_PRECEDENCE);
        super.addViewControllers(registry);
    }
}

registry.addViewController("/").setViewName("index");
"index" 为要设置成首页页面的文件名称

你可能感兴趣的:(SpringBoot设置默认首页)