Commons Logging:不会检测属性文件

Commons Logging: Won't detect properties file

所以,我正在使用 apache commons 日志记录,因为我也在使用 PDFBox,我只是想保持一致。我想在几分钟内完成设置,这样我就可以使用日志条目来调试我的应用程序中的问题。

问题是,我的 commons-logging.properties 文件从未被检测到。 None 的配置设置被检测到。我无法更改日志记录级别或执行任何操作。我得到的只是我的信息条目,采用默认格式。

我正在使用 Maven 构建的项目,该文件位于我的资源目录的根目录中。该目录中的所有其他内容都可以在类路径中检测到,只是不明显。

这是我的 pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.pilotfish</groupId>
    <artifactId>PDFViewer</artifactId>
    <version>1.0</version>

    <properties>
        <apache.commons.io.version>2.4</apache.commons.io.version>
        <apache.commons.logging.version>1.2</apache.commons.logging.version>
        <apache.fontbox.version>1.8.11</apache.fontbox.version>
        <apache.pdfbox.version>1.8.11</apache.pdfbox.version>
        <java.version>1.7</java.version>
        <maven.assembly.plugin.version>2.5.5</maven.assembly.plugin.version>
        <maven.compiler.plugin.version>3.1</maven.compiler.plugin.version>
        <maven.jar.plugin.version>2.6</maven.jar.plugin.version>
        <maven.source.plugin.version>3.0.0</maven.source.plugin.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>${apache.commons.io.version}</version>
        </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>${apache.commons.logging.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.pdfbox</groupId>
            <artifactId>fontbox</artifactId>
            <version>${apache.fontbox.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.pdfbox</groupId>
            <artifactId>pdfbox</artifactId>
            <version>${apache.pdfbox.version}</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>${maven.compiler.plugin.version}</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>${maven.assembly.plugin.version}</version>
                <configuration>
                    <archive>
                        <manifest>
                            <mainClass>com.pilotfish.eip.modules.pdfviewer.Main</mainClass>
                        </manifest>
                    </archive>
                    <descriptors>
                        <descriptor>src/assembly/assembly.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>${maven.source.plugin.version}</version>
                <configuration>
                    <outputDirectory>${project.build.directory}/classes/source/</outputDirectory>
                </configuration>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar-no-fork</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>


</project>

这是我的公地-logging.properties文件。

# Commons Logging Properties

# Doesn't seem to work... so annoying

org.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger

# JDK Handlers
handlers=java.util.logging.ConsoleHander

# Default log level
.level=DEBUG

# Log Formatter
java.util.logging.ConsoleHander.formatter=com.pilotfish.eip.modules.pdfviewer.log.LogFormatter
.formatter=com.pilotfish.eip.modules.pdfviewer.log.LogFormatter

我只是想在这里做一些简单的事情。我不关心任何复杂的事情,我只希望我的调试语句能够工作。这个不被发现是不对的。

提前致谢。

您必须使用命令行参数指定日志文件所在的位置:

-Djava.util.logging.config.file=/absolute/path/to/your/config/file/commons-logging.properties MyClass

我发现的一种方法很有用,尤其是当您想将 log4j.properties 打包到 jar 文件并在运行时加载该配置时。
只需将其放在代码的开头,让 log4j 将您的属性加载到 jar 中。

  PropertyConfigurator.configure(this.getClass.getClassLoader.getResourceAsStream("log4j.properties"))

确保你已经 log4j.properties 装进你的罐子里。