Dependency 'org.springframework.boot:spring-boot-starter-thymeleaf:1.5.9.RELEASE' not found
时间: 2023-09-29 13:05:52 浏览: 162
Spring-Boot - 初步搭建
在解决Dependency 'org.springframework.boot:spring-boot-starter-thymeleaf:1.5.9.RELEASE' not found的问题时,可以考虑以下几个方法:
1. 确保你的项目的pom.xml文件中已经正确地添加了spring-boot-starter-thymeleaf依赖。例如,检查是否在<dependencies>标签内添加了以下代码:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>1.5.9.RELEASE</version>
</dependency>
```
2. 确保你的项目的pom.xml文件中的父项目正确指定为spring-boot-starter-parent。例如,检查<parent>标签内是否添加了以下代码:
```xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
</parent>
```
3. 如果你的项目继承了spring-boot-starter-parent,并且仍然无法找到依赖,那么可能是由于版本不匹配导致的。可以尝试更新spring-boot-starter-thymeleaf的版本,或者更新整个spring-boot-starter-parent的版本,以确保它们是兼容的。
总结起来,要解决Dependency 'org.springframework.boot:spring-boot-starter-thymeleaf:1.5.9.RELEASE' not found的问题,你需要检查pom.xml文件中是否正确添加了依赖,并确保项目正确继承了spring-boot-starter-parent。如果问题仍然存在,可以尝试更新依赖版本或整个父项目的版本来解决兼容性问题。
阅读全文