gpt4 book ai didi

spring - 如何为配置中尚未存在的任何 spring 配置文件指定默认 Logback 配置

转载 作者:行者123 更新时间:2023-12-04 10:34:17 25 4
gpt4 key购买 nike

这是我简化的 logback-spring.xml 配置:

<configuration>

<!-- appender config -->

<springProfile name=dev>
<!-- dev specific config here -->
</springProfile>

<springProfile name=prod>
<!-- prod specific config here -->
</springProfile>

<!-- other profiles -->

</configuration>

当我使用一些不同的配置文件运行我的应用程序时,我想获得一些默认的 logback 配置。我在 logback-spring.xml 中找不到有关具有某些默认配置的信息。

请注意,定义了超过 2 个配置文件,我不知道其他临时配置文件的名称。

谢谢,帕夫洛

最佳答案

你可以这样定义它:

<configuration>

<!-- appender config -->

<springProfile name=dev>
<!-- dev specific config here -->
</springProfile>

<springProfile name=prod>
<!-- prod specific config here -->
</springProfile>

<!-- other profiles -->

<springProfile name="!(dev| prod)">
<!-- other specific config here -->
</springProfile>

关于spring - 如何为配置中尚未存在的任何 spring 配置文件指定默认 Logback 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60263266/

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