admin管理员组

文章数量:1612099

报错:
Circular view path [index]: would dispatch back to the current handler URL [/index] again. Check your ViewResolver setup! (Hint: This may be the result of an unspecified view, due to default view name generation.)
原因:
项目中没有导入 spring-boot-starter-thymeleaf的依赖
解决办法:
pom.xml中导入

 <dependency>
     <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
 </dependency>

本文标签: 报错项目ViewcircularSpringBoot