Spring Cloud
文章平均质量分 69
小仙。
这个作者很懒,什么都没留下…
展开
-
Spring——》feign下载文件
Spring——》feign下载文件原创 2022-11-10 10:32:02 · 747 阅读 · 0 评论 -
解决——》feign文件下载时报错feign.codec.EncodeException: not in non blocking mode
解决——》feign文件下载时报错feign.codec.EncodeException: not in non blocking mode原创 2022-11-10 10:29:10 · 699 阅读 · 0 评论 -
Spring——》@Autowired和@Resource
Spring——》@Autowired和@Resource一、共同点二、不同点三、@Autowired1、按照类型byType注入:默认2、按照名称byName注入四、@Resource1、按照类型byType注入2、按照类型byName:默认3、装配顺序1)同时指定name和type2)指定name3)指定type4)同时没有指定name和type一、共同点1、做bean的注入时使用2、写在字段上,或写在setter方法二、不同点注解提供包注入方式@AutowiredS原创 2022-05-21 18:24:21 · 246 阅读 · 0 评论 -
总结——》【Spring】
序号日期标题12022-05-21 Spring——》Spring框架中用到了哪些设计模式原创 2022-05-21 17:18:27 · 788 阅读 · 0 评论 -
Spring——》Spring框架中用到了哪些设计模式
参考链接: 总结——》【Java】 Java——》谈谈你对设计模式的理解单例模式 :bean默认都是单例的原型模式 :指定作用域为prototype工厂模式 :BeanFactory装饰者模式 :BeanWrapper代理模式 :动态代理适配器模式 :Adapter责任链模式 :使用aop的时候会先生成一个拦截器链观察者模式 :listener,event,multicast委托者模式 :d.原创 2022-05-21 17:15:38 · 644 阅读 · 0 评论 -
SpringBoot——》Spring Boot Starters启动器
推荐:总结——》【SpringBoot】参考:54 个官方 Spring Boot Starters 出炉!别再重复造轮子了…….SpringBoot——》Spring Boot Starters启动器一、Starters是什么二、Starters命名1、官方的启动器2、第三方的启动器三、Starters分类1、Spring Boot应用类启动器2、Spring Boot生产启动器3、Spring Boot技术类启动器一、Starters是什么Starters可以理解为 启动器 ,它包含了.原创 2021-02-24 14:48:21 · 212 阅读 · 0 评论 -
SpringBoot——》面试题(微服务)
推荐:总结——》【SpringBoot】SpringBoot——》面试题(微服务) 微服务之间是如何独立通讯的? 微服务的优缺点? 微服务的特点? 你所知道的微服务技术栈 微服务之间是如何独立通讯的?1、远程过程调用(Remote Procedure Invocation)使用:服务的注册与发现,直接通过远程过程调用来访问别的service。优点:简单,常见,因为没有中间件代理,系统更简单缺点: 只支持请求/响应的模式,不支持别的,比如通知、请求/异步响应、发布/订阅、发布.原创 2021-02-24 09:34:57 · 241 阅读 · 0 评论 -
SpringBoot——》Feign的拦截器RequestInterceptor
参考:总结——》【SpringBoot】Feign 支持请求拦截器,在发送请求前,对发送的模板进行操作,例如设置请求头等属性。自定义请求拦截器:实现 feign.RequestInterceptor 接口实现方法 apply( RequestTemplate template )import feign.RequestInterceptor;import feign.RequestTemplate;import org.springframework.web.context.r.原创 2021-01-27 16:53:30 · 5782 阅读 · 0 评论 -
SpringBoot——》Cat埋点、Cat+Feign整合消息调用链路
参考:总结——》【SpringBoot】SpringBoot——》CAT客户端从Apollo中读取配置调用链监控 CAT 之 URL埋点实践CAT 消息链路(消息树)的构建思路:A -> B -> C上下级编号关联CAT 编号模型:ROOTID : 根的编号PARENTID : 上级编号CHILD : 子级编号Feign调用:Feign底层基于HTTP去调用的,所以参数之间传递的时候需要将消息编号进行传递,并且关联起来。例如: A 客户端要生成编号模型,原创 2021-01-27 14:34:49 · 1562 阅读 · 1 评论 -
SpringBoot——》Apollo客户端监听配置变化、动态刷新
@Value ,动态刷新@ConfigurationProperties , 需要添加apollo配置监听器 @ApolloConfigChangeListener 实现动态刷新一、配置1、pom.xml<dependency> <groupId>com.ctrip.framework.apollo</groupId> <artifactId>apollo-client</artifactId> <.原创 2021-01-18 18:08:37 · 7971 阅读 · 10 评论 -
解决——》The injection point has the following annotations: - @org.springframework.beans.factory.annotat
The injection point has the following annotations1、操作2、现象(错误信息)3、原因4、解决1、操作maven项目打包2、现象(错误信息)maven项目打包时 ,src/main/java目录下的xml等资源文件打包不进去3、原因默认maven在src/main/java中只编译java文件,其他的文件会被忽略。4、解决...原创 2021-01-15 11:27:38 · 6335 阅读 · 5 评论 -
解决——》maven打包时缺少文件
maven打包时缺少文件1、操作2、现象(错误信息)3、原因4、解决1、操作maven项目打包2、现象(错误信息)maven项目打包时 ,src/main/java目录下的xml等资源文件打包不进去3、原因默认maven在src/main/java中只编译java文件,其他的文件会被忽略。4、解决建议:非java相关的资源,写在src/main/resources中比较好,这样条理清晰通过配置pom.xml,改变默认的设置<build> <resou原创 2021-01-14 20:42:30 · 1941 阅读 · 0 评论 -
总结——》【SpringBoot】
一起学习SpringBoot原创 2018-12-04 14:59:46 · 1567 阅读 · 1 评论 -
解决:java.lang.IllegalStateException: Service id not legal hostname (${feign.client.fangShopCore.name}
1、操作springboot启动项目的时候2、现象(错误信息)2020-09-29 10:30:59.999 INFO 3680 --- [ main] EnableEncryptablePropertiesConfiguration : Bootstraping jasypt-string-boot auto configuration in context: application-12020-09-29 10:30:59.999 INFO 3680 --- [原创 2020-09-29 10:45:24 · 11492 阅读 · 0 评论 -
解决——》Field advertisementApi in x required a bean of type ‘ AdvertisementApi‘ that could not be found
1、操作springboot启动项目的时候2、现象(错误信息)2020-09-29 09:24:55.867 INFO 10836 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8901 (http)2020-09-29 09:24:55.883 INFO 10836 --- [ main] o.apache.catalina.原创 2020-09-29 09:54:37 · 418 阅读 · 0 评论 -
SpringBoot——》异步执行:@EnableAsync、@Async
版权声明:本文为博主原创文章,无需授权即可转载,甚至无需保留以上版权声明,转载时请务必注明作者。https://blog.csdn.net/weixin_43453386/article/details/106209402同步调用 :整个处理过程按顺序执行,每一步必须等到上一步执行完后才能执行异步调用 :只是发送了调用的指令,调用者无需等待被调用的方法完全执行完毕,继续执行下面的流程。一、开启异步:@EnableAsync@EnableAsync@SpringBootApplication原创 2020-05-19 16:02:39 · 331 阅读 · 0 评论 -
SpringBoot——》Thymeleaf
SpringBoot——》Thymeleaf一、Thymeleaf一、Thymeleaf原创 2019-10-28 16:09:23 · 230 阅读 · 0 评论 -
解决——》Singleton bean creation not allowed while singletons of this factory are in destruct
版权声明:本文为博主原创文章,无需授权即可转载,甚至无需保留以上版权声明,转载时请务必注明作者。https://blog.csdn.net/weixin_43453386/article/details/94018162解决——》Singleton bean creation not allowed while singletons of this factory are in destruc...原创 2019-09-17 11:00:59 · 8955 阅读 · 0 评论 -
Spring Cloud Feign
Spring Cloud Feign一、FeignClient简介1.JAVA常见接口调用方式2.Feign简介3.Feign特性二、FeignClient工作原理三、Server &amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp; Producer &amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp; Consumer1.Eureka-Server注册中心1)applicati原创 2018-10-23 16:30:39 · 199 阅读 · 0 评论