今天偷学了一下spring boot,通过html模版,连helloworld都运行不起来。
报错:Circular view path
最后网上发现解决方法,就是少一个导入包
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
好蠢啊
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
好蠢啊