初始化代码

This commit is contained in:
lpd
2026-04-09 11:52:02 +08:00
parent bb5937c5b7
commit 8319ac9516
565 changed files with 965 additions and 658 deletions

View File

@@ -11,7 +11,7 @@ import org.springframework.context.annotation.Bean;
/**
* Metrics 配置类
*
* @author lyz源码
* @author 芋道源码
*/
@AutoConfiguration
@ConditionalOnClass({MeterRegistryCustomizer.class})

View File

@@ -24,7 +24,7 @@ import org.springframework.context.annotation.Bean;
@ConditionalOnProperty(prefix = "lyzsys.tracer", value = "enable", matchIfMissing = true)
public class LyzsysTracerAutoConfiguration {
// TODO @鹭鹭skywalking 不兼容最新的 opentracing 版本。同时opentracing 也停止了维护,尬住了!后续换 opentelemetry 即可!
// TODO @芋艿skywalking 不兼容最新的 opentracing 版本。同时opentracing 也停止了维护,尬住了!后续换 opentelemetry 即可!
// @Bean
// public BizTraceAspect bizTracingAop() {
// return new BizTraceAspect(tracer());

View File

@@ -12,7 +12,7 @@ import java.io.IOException;
/**
* Trace 过滤器,打印 traceId 到 header 中返回
*
* @author lyz源码
* @author 芋道源码
*/
public class TraceFilter extends OncePerRequestFilter {

View File

@@ -11,7 +11,7 @@ import java.util.Map;
/**
* 链路追踪 Util
*
* @author lyz源码
* @author 芋道源码
*/
public class TracerFrameworkUtils {

View File

@@ -1,6 +1,6 @@
/**
* 使用 SkyWalking 组件,作为链路追踪、日志中心。
*
* @author lyz源码
* @author 芋道源码
*/
package cn.iocoder.lyzsys.framework.tracer;