01 2022 档案

摘要:下载: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 残星 阅读(899) 评论(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 残星 阅读(464) 评论(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 残星 阅读(998) 评论(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 残星 阅读(573) 评论(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 残星 阅读(1511) 评论(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 残星 阅读(267) 评论(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 残星 阅读(471) 评论(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 残星 阅读(354) 评论(0) 推荐(0) 编辑
摘要:1、类必须是Spring组件 Bean 2、类必须加上RoutePredicateFactory作为结尾 3、类必须继承AbstractRoutePredicateFactory 4、类必须声明静态内部类,声明属性来接收配置文件中对应的断言的信息 5、需要结合shortcutFieldOrder进行 阅读全文
posted @ 2022-01-15 00:39 残星 阅读(2335) 评论(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 残星 阅读(379) 评论(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 残星 阅读(962) 评论(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 残星 阅读(131) 评论(0) 推荐(0) 编辑