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

浙公网安备 33010602011771号