在为配置客户端添加依赖项时,我看到以下错误。此外,我无法添加@RefreshScope注释,因为它无法找到包。
但内容存在于我的本地存储库中,版本为1.4.2。
刚开始使用spring-boot,因此不确定下一步。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.app</groupId>
<artifactId>customer</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>customer</name>
<description>Project with local MongoDB</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.10.RELEASE</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
答案 0 :(得分:1)
Spring Boot Parent不管理Spring Cloud的任何依赖项。
Spring Cloud构建于Spring Boot之上。
Spring Cloud构建于Spring Boot之上,它提供了一堆库,可以在添加到类路径时增强应用程序的行为。您可以利用基本的默认行为来快速入门,然后在需要时,您可以配置或扩展以创建自定义解决方案。
http://projects.spring.io/spring-cloud/
有多个&#34;发布列车&#34;与Spring Boot有效绑定或包含不同版本的依赖关系。
您需要添加dependencyManagement部分来管理Spring Cloud依赖项
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Edgware.SR2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Edgware.SR2
是Spring Boot 1.5.X系列的最新版本。您也可以使用Dalston Release火车,我相信唯一的区别是Edgware包含一些重大变化。