gpt4 book ai didi

spring-cloud - 使用 spring cloud feign 导致 java.lang.NoClassDefFoundError : feign/Logger

转载 作者:行者123 更新时间:2023-12-04 02:47:36 28 4
gpt4 key购买 nike

我为 feignClients 启用了我的 spring 云,如下所示:

@Configuration
@EnableAutoConfiguration
@RestController
@EnableEurekaClient
@EnableCircuitBreaker
@EnableFeignClients

public class SpringCloudConfigClientApplication {
}

但是当我添加 enableFeignClients 时,我在编译过程中遇到了这个错误,
java.lang.NoClassDefFoundError: feign/Logger
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2688)
at java.lang.Class.getDeclaredMethods(Class.java:1962)

我的 POM 是
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>1.0.0.RELEASE</version>
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class>demo.SpringCloudConfigClientApplication</start-class>
<java.version>1.7</java.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</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-hystrix</artifactId>
</dependency>

</dependencies>

为了解决 feign logger 问题,我还需要向 POM 添加哪些其他依赖项?

谢谢

谢谢@spencergibb,根据您的建议,在我更改 pom.xml 后它起作用了。现在我有另一个使用 FeignClient 的问题。请参阅以下内容:
@Autowired
StoreClient storeClient;
@RequestMapping("/stores")
public List<Store> stores() {
return storeClient.getStores();
}

和界面是:
@FeignClient("store")
public interface StoreClient {
@RequestMapping(method = RequestMethod.GET, value = "/stores")
List<Store> getStores();
}

店铺实体是:
public class Store {

private long id;
private String name;
private String zip;

public Store(long id, String name, String zip) {
this.id = id;
this.name = name;
this.zip = zip;
}
}

现在,当我在 URL 中检索时,出现此错误,
ue Jun 09 15:30:10 PDT 2015
There was an unexpected error (type=Internal Server Error, status=500).
Could not read JSON: No suitable constructor found for type [simple type, class demo.entity.Store]: can not instantiate from JSON object (need to add/enable type information?) at [Source: java.io.PushbackInputStream@7db6c3dc; line: 1, column: 3] (through reference chain: java.util.ArrayList[0]); nested exception is com.fasterxml.jackson.databind.JsonMappingException: No suitable constructor found for type [simple type, class demo.entity.Store]: can not instantiate from JSON object (need to add/enable type information?) at [Source: java.io.PushbackInputStream@7db6c3dc; line: 1, column: 3] (through reference chain: java.util.ArrayList[0])

似乎这里的错误是检索列表无法转换为存储类。
那么为了使用 FeignClient,我们需要包含任何其他映射器来将 JSON 转换为对象吗?

谢谢

最佳答案

您失踪了 spring-cloud-starter-feign

关于spring-cloud - 使用 spring cloud feign 导致 java.lang.NoClassDefFoundError : feign/Logger,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30737885/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com