
spring cloud
文章平均质量分 86
溪.源
夫学须静也,才须学也;非学无以广才,非志无以成学。
展开
-
【seata系列】centos服务器带你踩坑搭建seata以及解决MySQL8.0无法启动问题
目录准备配置registry.conffile.conf创建相关表和数据库启动踩坑启动准备通过github下载安装包:https://github.com/seata/seata/releases/tag/v1.3.0seate中文文档:http://seata.io/zh-cn/docs/overview/what-is-seata.html将下载的安装包上传到服务器,解压缩即可;配置进入conf目录,主要修改file.conf和registry.confregistry.conf由于小编原创 2021-09-29 22:08:00 · 3665 阅读 · 1 评论 -
【gateway系列】手把手教你gateway整合nacos注册中心
目录准备Gateway服务Member服务运行往期相关推荐:网关路由规则和nacos配置中心实战:一步步带你学习gateway路由规则实践nacos整合配置中心准备准备引入相关依赖:<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId>原创 2021-09-28 20:25:31 · 3455 阅读 · 0 评论 -
【gateway系列】一步步带你学习gateway路由规则实践
目录1、准备微服务项目gateway网关服务2、Path3、Query4、Method5、DateTime6、RemoteAddr7、Header1、准备微服务项目新创建一个springBoot项目作为微服务,简单一个demo,如下:@RestControllerpublic class MemberController { @RequestMapping("/query-demo") public String queryDemo(String name) {原创 2021-09-27 20:56:03 · 1859 阅读 · 0 评论