
springcloud
阳十三
不要把平台当做能力
展开
-
springcloud feign 踩坑日记No properties id:DESC found on type
情况说明: 在feign调用服务的时候query参数对象需要使用@SpringQueryMap注解,此注解只对第一个参数有效。 处理feign对pageable的解析: /** * @author Lee * @description 配置feign 解析pageable * @date 2020/10/29 7:32 下午 **/ @Bean public com.fasterxml.jackson.databind.Module pageJack原创 2021-03-05 11:03:29 · 707 阅读 · 1 评论 -
处理服务间feign 上传下载
springboot版本: 2.2.9 springcloud版本: Hoxton.SR3 处理上传(服务调用端): 编码器配置 /** * @author Lee * @description feign 文件转码器 * @date 2020/11/26 2:10 下午 **/ public class FeignMultipartSupportConfig { @Autowired private ObjectFactory<HttpMessageConverters&g原创 2020-11-26 16:26:30 · 272 阅读 · 0 评论 -
feign get 多对象参数 脱坑记
我的请求是这样的: 项目启动的时候会报too many body… 解决方式: 使用@SpringQueryMap注解 然后发现 通过feign调到的服务 pageable 参数无法正常传递,原因就不多说了。 解决方式是这样的: /** * @author Lee * @description 配置feign 解析pageable * @date 2020/10/29 7:32 下午 **/ @Bean public Module pageJ原创 2020-10-29 20:08:08 · 698 阅读 · 0 评论 -
seata :no available service ‘null‘ found, please make sure registry config correct
记录一下这个有点坑的问题: no available service ‘null’ found, please make sure registry config correct springboot 2.2.9 springcloud alibaba 2.2.1 seata 1.3 nacos 1.3.2 按照最新的seata文档搭建好后一直报这个错,根据网上的解决方案检查注册中心配置没问题 registry.conf registry { # file 、nacos 、eureka、redis、z原创 2020-09-10 21:42:50 · 16372 阅读 · 7 评论 -
nacos注册中心和配置中心(二)
一,引入依赖 <!-- 注册中心--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> <version>${springcloud-alibaba.version}<原创 2020-07-29 17:19:21 · 230 阅读 · 0 评论 -
Springcloud初始框架搭建
框架代码在:git@github.com:jlimingyang/springcloud.git原创 2018-11-13 16:41:13 · 182 阅读 · 0 评论