摘要:
List<User> list = userService.list(wrapper);// int类型int age = list.stream().mapToInt(User::getAge).sum();// long类型long age = list.stream().mapToLong(U 阅读全文
摘要:
创建 FeignConfig 点击查看代码 @Configuration public class FeignConfig { @Bean public Decoder customErrorDecoder() { return new FeignClientDecoder(); } @Autowi 阅读全文