5

运行 jetty-maven-plugin 时出现此错误:

[INFO] --- jetty-maven-plugin:7.6.1.v20120215:start (start-jetty) @ rest ---
log4j:WARN No appenders could be found for logger (org.eclipse.jetty.util.log).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.

该项目是一个包含 log4j.properties 的战争WEB-INF/classes

我还将以下属性传递给插件,只是为了查看发生了什么(该特定 log4j.properties 文件也存在于以下位置):

<!-- Log4J settings -->
<systemProperty>
    <name>log4j.configuration</name>
    <value>file://${project.build.testOutputDirectory}/log4j.properties</value>
</systemProperty>
<systemProperty>
    <name>log4j.debug</name>
</systemProperty>

webapp 中的日志记录工作正常。但是,我对这个错误感到困惑。

我在项目中有这些依赖项:

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-log4j12</artifactId>
</dependency>
<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-core</artifactId>
</dependency>

此外,当测试(需要 Jetty)开始运行时,我确实看到了以下输出:

log4j: Using URL [file:/project/foo/rest/target/test-classes/log4j.properties] for automatic log4j configuration.
log4j: Reading configuration from URL file:/project/foo/rest/target/test-classes/log4j.properties
log4j: Parsing for [root] with value=[ERROR, console].
log4j: Level token is [ERROR].
log4j: Category root set to ERROR
log4j: Parsing appender named "console".
log4j: Parsing layout options for "console".
log4j: Setting property [conversionPattern] to [%d %p %c - %m%n].
log4j: End of parsing for "console".
log4j: Parsed "console" options.
log4j: Parsing for [project.foo] with value=[DEBUG].
log4j: Level token is [DEBUG].
log4j: Category project.foo set to DEBUG
log4j: Handling log4j.additivity.project.foo=[null]
log4j: Finished configuring.

有人能告诉我为什么 Jetty 不开心吗?

4

3 回答 3

6

另一种选择是对 log4j.properties 使用“file:///”样式的 url,如下所示:

 <plugin>
  <groupId>org.mortbay.jetty</groupId>
  <artifactId>jetty-maven-plugin</artifactId>
  <version>8.1.10.v20130312</version>
  <configuration>
    <systemProperties>
            <systemProperty>
                <name>log4j.configuration</name>
                <!-- have to use file:/// url since -->
                    <!-- Jetty is using classloader --> 
                    <!-- before the webapp classloader is ready -->
               <value>file:///${basedir}/src/main/resources/log4j.properties</value>
            </systemProperty>
     <configuration>
     <dependencies>
        <dependency>  
            <groupId>org.slf4j</groupId>  
            <artifactId>slf4j-log4j12</artifactId>  
            <version>1.6.6</version>  
        </dependency>
     </dependencies>
 </plugin>

I had the same problem where Jetty was looking for the log4j.properties file using a classloader that didn't include my project's source code. SO it kept complaining "log4j:WARN No appenders could be found for logger (org.eclipse.jetty.util.log).". But this workaround solved it and I'm able to see the log message and control them through log4j.

于 2013-04-23T22:55:28.080 回答
4

该留言板线程所示,您不能再使用 jetty-maven-plugin 中的系统属性配置 log4j。从 Jetty 7.5.0 开始,Jetty 类现在使用静态日志初始化器。这些静态日志初始化器导致 Log4j 系统在加载系统属性之前被初始化。

两种可能的解决方法是降级到 Jetty 7.4.5,或者使用单独的 maven 插件(例如 properties-maven-plugin)在初始化 Jetty 插件之前设置 log4j 系统属性。

于 2012-05-30T20:04:10.830 回答
1

问题是我有一个聚合器,其中有几个模块,每个模块在测试之前启动 Jetty,然后停止它。在启动 Jetty 时,我已经<systemProperties/>定义了。在查看了 Jetty 的源代码后,我发现一旦从其中一个模块以这种方式设置系统属性,它们就永远不会在以后(在您的其他模块中)被覆盖,因为插件中有一条规则禁止这样做。因此,日志的系统属性在执行之间变得混乱,尽管它们位于不同的子模块中。

我通过编写自己的 Maven 插件来解决此问题,该插件在执行之前为您设置系统属性。我已经把项目放在了 github 上。可以在此处找到如何使用它的说明。

于 2012-04-06T08:04:13.573 回答