关于feign使用相关问题

feign.FeignException$InternalServerError: [500]GET

在进行微服务联调时出现问题

feigin client代码

@FeignClient(value = "category-service",configuration = FeignClientsConfiguration.class)
public interface CategoryClient {
 @GetMapping("/category/promo/{categoryName}")
 R byName(@PathVariable String categoryName);

}

对应controller代码

    @GetMapping("/promo/{categoryName}")
    public R byName(@PathVariable String categoryName){

        if (StringUtils.isEmpty(categoryName)){
            return R.fail("类别名称为null,无法查询类别数据!");
        }

        return categoryService.byName(categoryName);
    }

注意区分@PathVariable以及@RequestParam注解:

@PathVaribale 获取url中的数据

@RequestParam 获取请求参数的值

参考博客:http://t.csdnimg.cn/p4ATo

一开始直接查询错误看看怎么解决,有说加@RequestBody的,但是我的是Get方法,所以不需要加。还有lombok的构造参数方法什么的也不是。后来发现,因为不熟悉之前提到的两种注解的区别,导致路径不对,所以一直没发现数据库的错误(没走到数据库,所以那个服务没报错),原来是数据库中url中数据库名写错导致一直找不到表,修改后发现查询成功但是查不到数据,debug调试后,发现没加@JsonProperty配置json返回数据的别名,导致获取不到相关的id值,因此查询不到数据,添加后端口测试正常。

人给我整麻了,我是菜鸡(哭哭哭)

使用ThreadPoolExecutor调用feign的示例代码如下: ```java import feign.Feign; import feign.Request; import feign.Retryer; import feign.Target; import feign.codec.Decoder; import feign.codec.Encoder; import feign.codec.ErrorDecoder; import feign.hystrix.HystrixFeign; import feign.hystrix.SetterFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.cloud.openfeign.FeignClientsConfiguration; import org.springframework.context.annotation.Import; import org.springframework.stereotype.Component; import java.util.concurrent.*; @Component @Import(FeignClientsConfiguration.class) public class MyFeignClient { private final ThreadPoolExecutor threadPoolExecutor; @Autowired public MyFeignClient(ThreadPoolExecutor threadPoolExecutor) { this.threadPoolExecutor = threadPoolExecutor; } public <T> T createClient(Class<T> type, String url) { return HystrixFeign.builder() .setterFactory((Target<?> target, SetterFactory setterFactory) -> { String name = target.name(); return HystrixFeign.Setter.withGroupKey(HystrixFeign.DefaultGroupKey .from(target.type())) .andCommandKey(HystrixFeign.DefaultCommandKey .from(target.type())) .andThreadPoolKey(HystrixFeign.DefaultThreadPoolKey .from(target.type())) .andCommandPropertiesDefaults(HystrixFeign.SetterFactory .create(target, setterFactory).getCommandProperties()) .andThreadPoolPropertiesDefaults(HystrixFeign.SetterFactory .create(target, setterFactory).getThreadPoolProperties()); }) .retryer(Retryer.NEVER_RETRY) .encoder(new Encoder.Default()) .decoder(new Decoder.Default()) .errorDecoder(new ErrorDecoder.Default()) .options(new Request.Options()) .target(type, url); } public <T> Future<T> executeAsync(Callable<T> callable) { return threadPoolExecutor.submit(callable); } } ``` 相关问题--: 1. 如何使用ThreadPoolExecutor创建线程池? 2. 如何使用Feign调用远程接口? 3. 如何使用Hystrix实现服务容错?
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值