logback-弹簧。无法从 application.yml 读取属性值

Posted

技术标签:

【中文标题】logback-弹簧。无法从 application.yml 读取属性值【英文标题】:logback-spring. is unable to read property value from application.yml 【发布时间】:2022-01-22 03:20:06 【问题描述】:

我的 logback-spring.xml 可以从 application.properties 读取,但不能从 application.yml 读取。在我的项目中,我们被要求仅使用 YAML 格式,因为该格式正在同一项目中的其他微服务中使用,因此我无法添加属性文件。请帮助我为什么我的 application.yml 没有在 logback.xml 中读取

我尝试了各种方法并在 *** 上搜索了类似的问题,但没有一个问题有正确答案**。请不要将此标记为重复**。

 <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
        <include resource="org/springframework/boot/logging/logback/defaults.xml"/>
        <include resource="org/springframework/boot/logging/logback/base.xml"/>
        <include resource="org/springframework/boot/logging/logback/console-appender.xml"/>
        <property resource ="application.yml"/>
        <property name="LOGS" value="./logs" />
        <appender name="Console"
            class="ch.qos.logback.core.ConsoleAppender">
            <layout class="ch.qos.logback.classic.PatternLayout">
                <Pattern>
                    %black(%dISO8601) %highlight(%-5level) [%blue(%t)] %yellow(%C1.): %msg%n%throwable
                </Pattern>
            </layout>
        </appender>
    
        <appender name="RollingFile"
            class="ch.qos.logback.core.rolling.RollingFileAppender">
            <file>$LOGS/$spring.application.name.log</file>
            <encoder
                class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
                <Pattern>%d %p %C1. [%t] %m%n</Pattern>
            </encoder>
    
            <rollingPolicy
                class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
                <!-- rollover daily and when the file reaches 10 MegaBytes -->
                <fileNamePattern>$LOGS/archived/spring-boot-logger-%dyyyy-MM-dd.%i.log
                </fileNamePattern>
                <timeBasedFileNamingAndTriggeringPolicy
                    class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
                    <maxFileSize>10MB</maxFileSize>
                </timeBasedFileNamingAndTriggeringPolicy>
            </rollingPolicy>
        </appender>
        
        <!-- LOG everything at INFO level -->
        <root level="info">
            <appender-ref ref="RollingFile" />
            <appender-ref ref="Console" />
        </root>
    
        <!-- LOG "com.baeldung*" at TRACE level -->
        <logger name="com.ms" level="trace" additivity="false">
            <appender-ref ref="RollingFile" />
            <appender-ref ref="Console" />
        </logger>
    
    </configuration>

上面是我的 logback-spring.xml。请参考下面我的application.yml:-

spring:
  application:
    name: Logbacking-service

【问题讨论】:

【参考方案1】:

您可以按照文档here 中的说明在您的 logback 文件中使用以下内容

<springProperty name = "appname" source= "spring.application.name"/>

然后在其他地方使用它

<file>$LOGS/$appname.log</file>

我测试了您使用的确切代码,它确实存在问题,因此上述解决方案应该也适用于我。之前使用您的代码生成的日志文件名是“appname_IS_UNDEFINED.log”,并发布上述更改名称是“Logbacking-service.log”。

如果您在 logback 中为“org.springframework.core.env.PropertySourcesPropertyResolver”启用跟踪日志记录级别,您将看到 application.yml 从中读取属性的位置。这将帮助您了解 Spring Boot 尝试从何处查找配置。如下所示

Searching for key 'spring.profiles.active' in PropertySource 'applicationConfig: [classpath:/application.yml]

【讨论】:

谢谢@shailendra :) 感谢我的团队。 不客气!很高兴为您提供帮助。 如果可以的话,请在这里提供帮助:- ***.com/questions/70432433/…

以上是关于logback-弹簧。无法从 application.yml 读取属性值的主要内容,如果未能解决你的问题,请参考以下文章

仅在设置了特定的弹簧配置文件时才运行集成测试

spring boot、logback 和 logging.config 属性

Grails 2 - 无法创建弹簧安全域对象

无法确定合适的驱动程序类弹簧

无法使用弹簧自定义过滤器对用户进行身份验证

websocket弹簧启动设置