gpt4 book ai didi

当应用程序作为 jar 启动时,Spring Boot 静态内部类未初始化

转载 作者:行者123 更新时间:2023-12-03 21:40:05 24 4
gpt4 key购买 nike

当我通过 intellij 启动我的 spring 启动应用程序时,以下类正确初始化并且可以看到日志。但是如果我从构建中再次运行 jar,MyCurrentTraceContext 似乎没有初始化,我也看不到输出中的日志。我确实需要这个带有我自定义逻辑的类来运行一些参数到 MDC 中。有什么建议吗?

@Configuration
@ConditionalOnProperty(value="spring.sleuth.enabled", matchIfMissing=true)
@AutoConfigureBefore(TraceAutoConfiguration.class)
public class MyLogConfiguration extends SleuthLogAutoConfiguration {
private static final Logger LOGGER = (Logger) LoggerFactory.getLogger(WtrLogConfiguration.class);

@Configuration
@ConditionalOnClass(MDC.class)
@EnableConfigurationProperties(SleuthSlf4jProperties.class)
protected static class MySlf4jConfiguration extends Slf4jConfiguration {

@Bean
@ConditionalOnProperty(value = "spring.sleuth.log.slf4j.enabled", matchIfMissing = true)
@ConditionalOnMissingBean
@Override
public CurrentTraceContext slf4jSpanLogger() {
LOGGER.info("************ OVER WRITTING WTIH WtrCurrentTraceContext*******");
return new MyCurrentTraceContext(Slf4jCurrentTraceContext.create());
}
}
}

最佳答案

请检查

@ComponentScan



在入门类的顶部设置项目启动时需要扫描的路径。
在你的情况下,这将是:

@ComponentScan("myPackagePath.MyLogConfiguration.MySlf4jConfiguration.*")

关于当应用程序作为 jar 启动时,Spring Boot 静态内部类未初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51995306/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com