问题描述:
@RequestMapping返回视图的时候一直报错:无法解析 MVC 视图 “index”
原因:
无法解析是因为找不到拼接的前后缀,所以无法跳转。忘记导入模板引擎依赖
解决:
在pom中下增加依赖
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring5</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-java8time</artifactId>
</dependency>