正确写法
@RequestMapping("/")
public String index(){
return "index.html";
}
在springboot中如果使用以下写法,必须引入thymeleaf模板。
或者在application.properties修改后缀配置
@RequestMapping("/")
public String index(){
return "index";
}
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>