SpringBoot项目Circular view path报错

就是缺少了依赖,添加以下依赖

<dependency>  
    <groupId>org.springframework.bootgroupId>  
    <artifactId>spring-boot-starter-thymeleafartifactId>  
dependency>  


还是不行,那可能就是html没有引号thymeleaf头部


<html xmlns:th="http://www.thymeleaf.org" >
<head>
<head>
<title>Good Thymes Virtual Grocerytitle>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
head>
<body>
    <p th:text="${title}">p>
body>
html>

你可能感兴趣的:(SpringBoot,thymeleaf)