博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Cloud Greenwich 新特性和F升级分享
阅读量:6637 次
发布时间:2019-06-25

本文共 2219 字,大约阅读时间需要 7 分钟。

  hot3.png

2019.01.23 期待已久的Spring Cloud Greenwich 发布了release版本,作为我们团队也第一时间把RC版本替换为release,以下为总结,希望对你使用Spring Cloud Greenwich 有所帮助 Greenwich 只支持 Spring Boot 2.1.x 分支。如果使用 2.0.x 请使用Finchley版本,

pom坐标

主要是适配JAVA11

org.springframework.boot
spring-boot-dependencies
2.1.2.RELEASE
pom
import
org.springframework.cloud
spring-cloud-dependencies
Greenwich.RELEASE
pom
import

升级netflix版本,DiscoveryClient支持获取InstanceId

image

Spring Cloud Config 提供了新的存储介质

除了Git、File、JDBC,新版本提供 在Cloud Foundry的CredHub存储功能

spring:  profiles:    active: credhub  cloud:    config:      server:        credhub:          url: https://credhub:8844

Spring Cloud Gateway

支持整合OAuth2

这里提供了一个例子:

整合的时候有个坑可以参考这个issue:

新增重写响应头过滤器

spring:  cloud:    gateway:      routes:      - id: rewriteresponseheader_route        uri: http://example.org        filters:        - RewriteResponseHeader=X-Response-Foo, , password=[^&]+, password=***

Feign 的新特性和坑

@SpringQueryMap 对Get请求进行了增强

  1. 终于解决这个问题了
  2. 不用直接使用OpenFeign新增的@QueryMap,由于缺少value属性 QueryMap注释与Spring不兼容...

异常解决

对Spring Cloud Finchley 进行直接升级时候发现feign启动报错了

***************************APPLICATION FAILED TO START***************************Description:The bean 'pigx-upms-biz.FeignClientSpecification', defined in null, could not be registered. A bean with that name has already been defined in null and overriding is disabled.Action:Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=trueProcess finished with exit code 1
  1. 第一种粗暴的解决方法,异常日志中说明了,在 bootstrap.yml中配置
spring.main.allow-bean-definition-overriding=true

这是Spring Boot 2.1 后新增的属性运行bean 覆盖,不要配置到配置中心里面,不然无效

  1. 第二种,就是把通过同一个服务调用的代码,移动到同一个@FeignClient中
  2. contextId ,这个是@FeignClient 新增的一个属性
This will be used as the bean name instead of name if present, but will not be used as a service id.

就可以用这个属性区分@FeigenClient 标志的同一个service 的接口

总结

  1. Spring Cloud F -- > G 变化很小,微乎其微主要是JAVA11的兼容
  2. 很遗憾没有看到 Spring Cloud Alibaba 加油。
  3. Spring Cloud LoadBalancer 还是老样子。目前来看暂时无法替代 ribbon
  4. ^_^

转载于:https://my.oschina.net/giegie/blog/3005632

你可能感兴趣的文章
Java Socket重要参数讲解
查看>>
【转】GitHub 中国区前 100 名到底是什么样的人?
查看>>
Unity 2017.2正式发布,新功能详解(下)(转)
查看>>
Arduino舵机控制
查看>>
使用php脚本查看已开启的扩展
查看>>
C和C++混合编程(__cplusplus 与 external "c" 的使用)
查看>>
页面返回顶部的方法总结
查看>>
linux内存管理
查看>>
chrome插件vimium的安装和使用
查看>>
[Note]CLR via C#3-Metadata review
查看>>
Dynamic Random Access for Hadoop Distributed File System
查看>>
如何让 Firefox,Chrome,Safari 浏览器模拟 iPad User Agent
查看>>
【转】C++的继承与多态:为什么需要虚函数
查看>>
Redis如何处理客户端连接
查看>>
C语言的原码,反码,补码
查看>>
js中document.documentElement 和document.body 以及其属性 clientWidth等
查看>>
怎么在DataGridView中动态添加DateTimePicker列?
查看>>
JNI学习小结
查看>>
CentOS 编译安装 MySQL5.7
查看>>
cacti_nagios<at>centos(redhat)整合安装简要记录
查看>>