描述问题:
在log4j2官网上, log4j2是表明可以使用yaml文件作为配置文件的.
但是实际使用上, 却总是报错
ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console.
已经阅读过官方文档, 将yaml的解析包加在pom.xml
中了
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.8.5</version>
</dependency>
但是我将配置文件改为xml
的, 就可以成功的使用xml配置文件.
是官方的bug. 还是哪里配置错了呢?
注: 另外, 还试过一种方法, 在maven的命令中加上参数-Dlog4j.configurationFile=log4j2-test.yaml
也可以成功读到yaml文件, 但是会报错, 说
前言中不允许有内容
而且从报错中是可以看到用XML解析器来解析的, 明显用错了解析器.
怎样让log4j2用yaml解析器来解析呢?
Feature Requirements
XML configuration -
Properties configuration -
JSON configuration Jackson core and databind
YAML configuration Jackson databind and YAML data format
需要添加对应依赖