当前位置:   article > 正文

OCP开源项目:日志公共组件的实现(log-spring-boot-starter)

log-spring-boot-starter

OCP开源项目:日志公共组件的实现(log-spring-boot-starter)

前言

企业微服务开放平台 ,历经多家公司生产考验

  • 基于layui前后端分离的企业级微服务架构

  • 兼容spring cloud netflix & spring cloud alibaba

  • 优化Spring Security内部实现,实现API调用的统一出口和权限认证授权中心

  • 提供完善的企业微服务流量监控,日志监控能力

  • 提供完善的压力测试方案

  • 提供完善的微服务部署方案

项目演示地址

http://59.110.164.254:8066/login.html 用户名/密码:admin/admin

项目监控地址

http://47.98.236.203:3000 用户名/密码:admin/1q2w3e4r

入群学习:(备注:Coder编程)
群1:483725710(满2000)
群2:897924507

本章主要是将ocp原来的log-core做一个代码优化,采用spring boot enable的方式重构代码。

log-spring-boot-starter

  • pom依赖

    image
  • LogServiceImpl 切换数据源,记录log表

    image
  • LogServiceImpl 切换数据源,记录log表

    image
  • AOP标准日志格式

    image
  • springboot项目中是否使用过EnableCaching

    image

下面咱们按照springboot的方式 编写EnableLogging

  • @Import(LogImportSelector.class)

    image
  • LogImportSelector

    image
  • 使用EnableLogging

    image

总结
1.@Import用来导入一个或多个类(会被spring容器托管),或者配置类(配置类里面的bean都会被spring容器托管)
2. ImportSelector 该接口的方法的返回值都会被纳入到spring容器管理中

@Import

image
  • import可以采用importselecor的返回值加入到spring容器

  • import还可以自定义ImportBeanDefinitionRegistrar接口,通过BeanDefinitionRegistry纳入到spring容器

链路跟踪

spring-cloud-sleuth-core

image
网关传递traceid
image
方法拦截器设置traceid
image
aop处理traceid
image
traceid处理
image
feign处理traceid
image
RestTemplate处理traceid
image

api-gateway

image

auth-server

image

grep -rn

image
  1. HP@owen /cygdrive/d/open-capacity-platform
  2. $ grep -rn a26003208271fd94 *
  3. logs/auth-gateway/auth-gateway-info.log:740:[auth-gateway:130.75.131.208:9200] [a26003208271fd94] [a26003208271fd94] 2019-09-06 09:38:33.898 INFO 6364 [XNIO-2 task-3] com.open.capacity.client.filter.ResponseFilter request url = http://127.0.0.1:9200/api-auth/validata/code/1263967C-FED7-4732-86D7-8CC6BDF752F5, traceId = a26003208271fd94
  4. logs/auth-gateway/auth-gateway-info.log:741:[auth-gateway:130.75.131.208:9200] [a26003208271fd94] [a26003208271fd94] 2019-09-06 09:38:36.703 INFO 6364 [XNIO-2 task-3] com.open.capacity.client.filter.ResponseFilter response url http://127.0.0.1:9200/api-auth/validata/code/1263967C-FED7-4732-86D7-8CC6BDF752F5, traceId = a26003208271fd94
  5. oauth-center/logs/auth-server/auth-server-info.log:722:[auth-server:130.75.131.208:8000] [a26003208271fd94] [b26ed6e6877dd47a] 2019-09-06 09:38:34.795 INFO 15168 [http-nio-8000-exec-1] com.open.capacity.log.aop.LogAnnotationAOP 开始请求,transid=a26003208271fd94,  url=com.open.capacity.uaa.server.controller.ValidateCodeController/createCode , httpMethod=null, reqData=["1263967C-FED7-4732-86D7-8CC6BDF752F5"]
  6. oauth-center/logs/auth-server/auth-server-info.log:723:[auth-server:130.75.131.208:8000] [a26003208271fd94] [b26ed6e6877dd47a] 2019-09-06 09:38:36.671 INFO 15168 [http-nio-8000-exec-1] com.open.capacity.log.aop.LogAnnotationAOP 请求完成, transid=a26003208271fd94, 耗时=1898, resp=null:
image

CompletableFuture.runAsync 与链路跟踪

image
  1. [test-log-center:130.75.131.208:8080] [,d1d8bf482db0af10] 2019-09-16 13:40:25.181 INFO 18088 [http-nio-8080-exec-10] com.open.capacity.log.test.controller.TestController ok
  2. [test-log-center:130.75.131.208:8080] [,d1d8bf482db0af10] 2019-09-16 13:40:25.220 INFO 18088 [pool-1-thread-1] com.open.capacity.log.test.controller.TestController oook
  • 异步传递MDC

    image
  • CompletableFuture 绑定自定义TaskExecutor

    image

X-B3-TraceId生产的源头

image
image
image
image
image

CompletableFuture.runAsync 与事物问题

image

需要下沉到另外一个类

image

文末

欢迎关注个人微信公众号:Coder编程
欢迎关注Coder编程公众号,主要分享数据结构与算法、Java相关知识体系、框架知识及原理、Spring全家桶、微服务项目实战、DevOps实践之路、每日一篇互联网大厂面试或笔试题以及PMP项目管理知识等。更多精彩内容正在路上~
也分享一些杂文~

文章收录至
Github: https://github.com/CoderMerlin/coder-programming
Gitee: https://gitee.com/573059382/coder-programming
欢迎关注并star~

微信公众号
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/813233
推荐阅读
相关标签
  

闽ICP备14008679号