摘要: 下载:https://skywalking.apache.org/downloads/ 将下载的 apache-skywalking-apm-es7-8.5.0.tar.gz 解压工具解压到当前文件夹 目录结构 webapp: UI 前端 (web监控页面) 的 jar 包和配置文件; oap-li 阅读全文
posted @ 2022-01-30 17:39 残星 阅读(770) 评论(0) 推荐(0) 编辑
摘要: 官网:https://skywalking.apache.org/ 下载:https://skywalking.apache.org/downloads/ Github: https://github.com/apache/skywalking 文档:https://skywalking.apach 阅读全文
posted @ 2022-01-27 19:30 残星 阅读(369) 评论(0) 推荐(0) 编辑
摘要: https://github.com/alibaba/Sentinel/wiki/%E7%BD%91%E5%85%B3%E9%99%90%E6%B5%81 pom.xml <!-- sentinel 启动器 --> <dependency> <groupId>com.alibaba.cloud</g 阅读全文
posted @ 2022-01-24 13:08 残星 阅读(917) 评论(0) 推荐(0) 编辑
摘要: https://docs.spring.io/spring-cloud-gateway/docs/2.2.6.RELEASE/reference/html/#cors-configuration server: port: 8060 spring: application: name: api-ga 阅读全文
posted @ 2022-01-23 20:10 残星 阅读(540) 评论(0) 推荐(0) 编辑
摘要: https://docs.spring.io/spring-cloud-gateway/docs/2.2.6.RELEASE/reference/html/#reactor-netty-access-logs 启用Reactor Netty访问日志,需要设置-Dreactor.netty.http. 阅读全文
posted @ 2022-01-23 00:13 残星 阅读(1349) 评论(0) 推荐(0) 编辑
摘要: 局部过滤器和全局过滤器的区别: 1、局部过滤器针对某个路由,需要在路由中进行配置 2、全局过滤器针对所有请求,一但定义就会投入使用 https://docs.spring.io/spring-cloud-gateway/docs/2.2.6.RELEASE/reference/html/#globa 阅读全文
posted @ 2022-01-20 20:55 残星 阅读(243) 评论(0) 推荐(0) 编辑
摘要: - CheckAuth=lisi server: port: 8060 spring: application: name: api-gateway cloud: # gateway的配置 gateway: # 路由规则 routes: - id: order_route # 路由的唯一标识, 路由 阅读全文
posted @ 2022-01-19 21:17 残星 阅读(441) 评论(0) 推荐(0) 编辑
摘要: https://docs.spring.io/spring-cloud-gateway/docs/2.2.6.RELEASE/reference/html/#gatewayfilter-factories spring: cloud: gateway: routes: - id: add_reque 阅读全文
posted @ 2022-01-18 23:23 残星 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 1、类必须是Spring组件 Bean 2、类必须加上RoutePredicateFactory作为结尾 3、类必须继承AbstractRoutePredicateFactory 4、类必须声明静态内部类,声明属性来接收配置文件中对应的断言的信息 5、需要结合shortcutFieldOrder进行 阅读全文
posted @ 2022-01-15 00:39 残星 阅读(2010) 评论(0) 推荐(0) 编辑
摘要: https://docs.spring.io/spring-cloud-gateway/docs Spring Cloud Gateway将路由匹配作为Spring WebFlux HandlerMapping基础架构的一部分。 Spring Cloud Gateway包括许多内置的Route Pr 阅读全文
posted @ 2022-01-09 19:15 残星 阅读(296) 评论(0) 推荐(0) 编辑
摘要: pom.xml <?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 阅读全文
posted @ 2022-01-08 23:08 残星 阅读(941) 评论(0) 推荐(0) 编辑
摘要: https://docs.spring.io/spring-cloud-gateway/docs/ https://cloud.spring.io/spring-cloud-gateway/reference/html/ SpringCloud Gateway 是 Spring Cloud 的一个全 阅读全文
posted @ 2022-01-06 16:20 残星 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 解决方法:创建logs/seata_gc.log 文件夹及文件 阅读全文
posted @ 2021-12-28 21:08 残星 阅读(571) 评论(0) 推荐(0) 编辑
摘要: 下载Git https://git-scm.com/ 选择开始菜单页 选择Git文件默认的编辑器 调整您的PATH环境 这个界面是调整您的PATH环境。 第一种配置是“仅从Git Bash使用Git”。这是最安全的选择,因为您的PATH根本不会被修改。您只能使用 Git Bash 的 Git 命令行 阅读全文
posted @ 2021-12-17 21:43 残星 阅读(57) 评论(0) 推荐(0) 编辑
摘要: Seata分TC、TM和RM三个角色,TC(Server端)为单独服务端部署,TM和RM(Client端)由业务系统集成。 https://seata.io/zh-cn/docs/ops/deploy-guide-beginner.html 下载安装包 https://github.com/seat 阅读全文
posted @ 2021-12-16 22:41 残星 阅读(465) 评论(0) 推荐(0) 编辑
摘要: 官网:https://seata.io/zh-cn/index.html https://seata.io/zh-cn/docs/overview/what-is-seata.html 源码:https://github.com/seata/seata Demo:https://github.com 阅读全文
posted @ 2021-12-14 16:39 残星 阅读(84) 评论(0) 推荐(0) 编辑
摘要: https://github.com/alibaba/Sentinel/wiki/%E5%9C%A8%E7%94%9F%E4%BA%A7%E7%8E%AF%E5%A2%83%E4%B8%AD%E4%BD%BF%E7%94%A8-Sentinel 生产环境的 Sentinel Dashboard 需要 阅读全文
posted @ 2021-12-13 14:29 残星 阅读(333) 评论(0) 推荐(0) 编辑
摘要: https://github.com/alibaba/Sentinel/wiki/%E7%B3%BB%E7%BB%9F%E8%87%AA%E9%80%82%E5%BA%94%E9%99%90%E6%B5%81 Sentinel 系统自适应限流从整体维度对应用入口流量进行控制,结合应用的 Load、C 阅读全文
posted @ 2021-12-11 17:28 残星 阅读(259) 评论(0) 推荐(0) 编辑
摘要: https://github.com/alibaba/Sentinel/wiki/%E7%83%AD%E7%82%B9%E5%8F%82%E6%95%B0%E9%99%90%E6%B5%81 何为热点?热点即经常访问的数据。很多时候我们希望统计某个热点数据中访问频次最高的 Top K 数据,并对其访 阅读全文
posted @ 2021-12-10 20:48 残星 阅读(523) 评论(0) 推荐(0) 编辑
摘要: package com.wsm.stock.controller; import org.springframework.beans.factory.annotation.Value; import org.springframework.web.bind.annotation.RequestMap 阅读全文
posted @ 2021-12-06 23:16 残星 阅读(342) 评论(0) 推荐(0) 编辑