spring cloud
文章平均质量分 72
huskyui
如果不想被动,那就主动一点
展开
-
springcloud整合seata1.3实现分布式事务
seata下载seata-server在github里面的seata仓库的release里面有链接切换github里面的seata的branch,寻找配置选择branch 1.3.0参数信息我们切换到script里面server我们需要选择我们的数据库版本,并新建database seata,将数据库脚本导入数据库client将client端的sql导入到我们需要提交的数据库里面(用于at模式的undo.log)config下载config.txt到seata-server根目录,原创 2021-05-28 18:59:07 · 808 阅读 · 0 评论 -
spring cloud gateway
在写之前,想写一下感受,之前有对接过springcloud的项目,有以下几个感受1.我们请求所有接口,都是请求同一个端口,路径不同,都会加一个token来验证权限我感觉是这么实现的,服务器对外访问只开放gateway项目端口,然后加一个token来全局filter当然,我不是这个项目的设计师,这是凭空想象而已。简介This project provides an API Gatewa...原创 2020-04-17 10:42:54 · 431 阅读 · 0 评论 -
SpringCloud-config
Spring Cloud Config简介Spring Cloud Config provides server-side and client-side support for externalized configuration in a distributed system. With the Config Server, you have a central place to mana...原创 2020-03-30 15:59:08 · 242 阅读 · 0 评论 -
SpringCloud-Eureka
categories: springcloudEureka简介Eureka是一种基于REST(Representational State Thransfer表现层状态转移)的服务,主要用于AWS的定位服务,以便实现中间层服务器的负载均衡和故障转移。单个注册中心整合pom配置 <dependency> <groupId>org...原创 2020-03-20 16:53:22 · 142 阅读 · 0 评论 -
springcloud中结合actuator不支持/actuator/refresh
起因因为springcloud config 里面需要获取刷新配置时,在访问浏览器http://localhost:13000/actuator/refresh时,发现出错。排查Whitelabel Error PageThis application has no configured error view, so you are seeing this as a fallback....原创 2020-01-17 10:55:46 · 2310 阅读 · 0 评论