1、打开application.properties,添加如下配置:
spring.mvc.view.prefix=/pages/
spring.mvc.view.suffix=.html
2、修改SpringBootController中的代码
@RequestMapping("hello") public String hello(){ return "hello"; }