微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

无法使用 netflix eureka 注册 spring 微服务

如何解决无法使用 netflix eureka 注册 spring 微服务

我有主类的 maven spring 微服务。

@EnableEncryptableProperties
@SpringBootApplication
@EnablediscoveryClient
public class AccountService {

    private static ApplicationContext applicationContext;

    public static void main(String[] args) {
        applicationContext = SpringApplication.run(AccountService.class,args);
    }

}

在我的 pom.xml 中,我添加了以下用于注册应用程序的依赖项。

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-config</artifactId>
    <version>2.2.6.RELEASE</version>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-eureka</artifactId>
    <version>1.3.5.RELEASE</version>
</dependency>

启动时出现以下错误

[WARN ] 2021-01-11 22:05:50 [main] AnnotationConfigServletWebServerApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDeFinitionStoreException: Failed to process import candidates for configuration class [com.microservices.accountservice.AccountService]; nested exception is java.io.FileNotFoundException: class path resource [org/springframework/boot/autoconfigure/web/ServerPropertiesAutoConfiguration.class] cannot be opened because it does not exist
[ERROR] 2021-01-11 22:05:50 [main] SpringApplication - Application run Failed
org.springframework.beans.factory.BeanDeFinitionStoreException: Failed to process import candidates for configuration class [com.microservices.accountservice.AccountService]; nested exception is java.io.FileNotFoundException: class path resource [org/springframework/boot/autoconfigure/web/ServerPropertiesAutoConfiguration.class] cannot be opened because it does not exist

项目定义了以下spring版本。

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.2.6.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

此外,微服务在启动期间使用 bootstrap.properties 与 spring-cloud-config-server 进行通信以获取 application.properties。与此错误相关的问题是什么?

解决方法

您的 pom.xml 中的依赖项彼此不兼容。您应该使用 spring-cloud-starter-netflix-eureka-client:2.2.6.RELEASE

如果您不为每个依赖项指定版本,而是使用 BOM (spring-cloud-dependencies),那就更好了,请参阅 official guide

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。