spring boot的logging.config配置

时间:2015-07-01 22:34:04

标签: spring logging log4j spring-boot logback

我想在spring启动应用程序中配置log4j.xml文件的位置。 为此,我已将logging.config属性添加到我的application.properties配置中,指示log4j.xml文件路径。 但似乎这个属性被忽略了。 但它应该适用于spring boot docs:

logging.config= # location of config file (default classpath:logback.xml for logback)

我做错了吗?

3 个答案:

答案 0 :(得分:4)

Spring Boot包含一些可以在您想要排除或交换特定技术方面时使用的启动器。如果您要在类路径中使用logback添加log4j,则默认情况下使用spring-boot-starter-log4j。例如,对于maven,它将是这样的:

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-log4j2</artifactId>
            <version>1.2.4.RELEASE</version>
</dependency>

和log4j 1.x:

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-log4j</artifactId>
            <version>1.2.4.RELEASE</version>
</dependency>

然后将logging.config添加到您的application.properties

logging.config = classpath:path/to/log4j.xml

答案 1 :(得分:2)

我发现在某些情况下,不会忽略外部日志记录配置(logback.xml):从应用程序文件夹启动应用程序时,它可以正常工作。 关于这一点的一些澄清:应用程序通过脚本运行,可以从任何地方调用。 我还没有深入了解为什么它以这种方式工作,但如果我在启动期间提供配置文件路径作为参数,它将工作。所以我们只是将这个参数添加到运行脚本中: --spring.config.location = /用configPath / application.properties 可能这个问题是由Spring加载阶段引起的。 如果你知道这个问题的根本原因,请分享:)

答案 2 :(得分:1)

根据spring boot docs

  

如果您使用入门poms来组合依赖项,则意味着您必须排除 Logback,然后包括所选的Log4j版本。

像这样:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter</artifactId>
    <exclusions>
        <exclusion>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-logging</artifactId>
        </exclusion>
    </exclusions>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-log4j</artifactId>
</dependency>