spring cloud
文章平均质量分 67
LoserBird
刚开始写博客,请多指教
展开
-
spring cloud jackson自定义文本转换器
由于 spring.jackson.default-property-inclusion 配置失效,所以得自定义文本转换器 废话不多说上代码 @Configuration@EnableWebMvcpublic class WebAppConfig implements WebMvcConfigurer { /** * 添加到消息转换器 * @param converters */ @Overridepublic void conf原创 2021-07-08 10:20:33 · 809 阅读 · 0 评论 -
spring cloud 集成nacos config discovery最新
废话不多说直接上代码首先创建一个spring boot maven项目 pom文件增加依赖 <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org原创 2021-07-08 10:06:31 · 413 阅读 · 0 评论 -
spring cloud整合seata+apollo分布式事物
首先下载seata客户端:https://github.com/seata/seata/releases下载之后里面有seata-server-1.1.0\seata\conffile.conf和registry.conffile.conf配置:## transaction log store, only used in seata-serverstore { ## s...原创 2020-03-11 11:13:16 · 2507 阅读 · 1 评论 -
Spring Cloud Feign遇到的一个坑
Failed to introspect Class [org.springframework.cloud.openfeign.FeignClientFactoryBean] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2]添加feign的时候,启动报错,检查了好久发现都没有写错,不知道是什么原因,最后发现,服务提供者和...原创 2019-09-02 17:58:49 · 1008 阅读 · 0 评论 -
spring boot admin,springcloud集成dingtalk
1.首先创建一个spring cloud 的maven项目2.笔者创建三个项目一个是注册中心,一个是spring boot admin 客户端,还有一个是spring boot admin 服务端admin的搭建就不多说了,参考底部源码3.重头戏来了首先需要创建两个配置文件DingTalkNotifier和DingTalkNotifierConfiguration#DingTalkNot...原创 2019-09-18 10:54:48 · 1146 阅读 · 0 评论