springboot2下的自定义试图映射

templates下的文件

config下的文件

@Configuration
@EnableWebMvc
public class Mymvc implements WebMvcConfigurer {

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

注意事项index是一个html文件的名字

官方推荐使用WebMvcConfigurer

官方地址:https://docs.spring.io/spring/docs/5.1.3.RELEASE/spring-framework-reference/web.html#mvc-config-interceptors

posted @ 2019-01-06 16:18  Angry-rookie  阅读(104)  评论(0)    收藏  举报