为啥我的返回是index
为啥我的返回的是 index .....
为啥我的返回的是 index .....
2017-11-27
第一需要使用
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
这个maven依赖
第二需要去掉之前加在对于映射方法上的注解@RequestBody
或是将@RestController替换成@Controller
PS:我在使用thymeleaf这个模板插件的时候遇到无法启动的错误,解决方案是:
将pom文件的<properties>标签内加上thymeleaf的版本参数
<thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
<thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version>
举报