14

我正在尝试使用自定义布局类进行播放框架 2.0 logback 日志记录。

首先,我在 utils 包中定义了一个自定义布局类:

package utils;

public class MonitorLayoutForLogback extends LayoutBase<ILoggingEvent> {
...
}

在我的 conf/logging.xml 文件中,我输入:

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
        <encoder class="ch.qos.logback.core.encoder.LayoutWrappingEncoder">
            <layout class="utils.MonitorLayoutForLogback">
                             <param name="programName" value="uowVisualizer" />
                             <param name="serviceGroup" value="shared" />
                             <param name="serviceIdentifier" value="uowVisualizer" />
            </layout>
        </encoder>
    </appender>

但是当我在游戏中奔跑时,例如,

play run

我懂了:

14:20:18,387 |-ERROR in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Could not create component [layout] of type [utils.MonitorLayoutForLogback] java.lang.ClassNotFoundException: utils.M
onitorLayoutForLogback
    at java.lang.ClassNotFoundException: utils.MonitorLayoutForLogback
    at      at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
    at      at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
    at      at java.security.AccessController.doPrivileged(Native Method)
    at      at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
    at      at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
    at      at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
    at      at sbt.PlayCommands$$anonfun$53$$anonfun$55$$anon$2.loadClass(PlayCommands.scala:535)
    at      at ch.qos.logback.core.util.Loader.loadClass(Loader.java:124)
    at      at ch.qos.logback.core.joran.action.NestedComplexPropertyIA.begin(NestedComplexPropertyIA.java:100)
    at      at ch.qos.logback.core.joran.spi.Interpreter.callBeginAction(Interpreter.java:276)
    at      at ch.qos.logback.core.joran.spi.Interpreter.startElement(Interpreter.java:148)
    at      at ch.qos.logback.core.joran.spi.Interpreter.startElement(Interpreter.java:130)
    at      at ch.qos.logback.core.joran.spi.EventPlayer.play(EventPlayer.java:50)
    at      at ch.qos.logback.core.joran.GenericConfigurator.doConfigure(GenericConfigurator.java:157)
    at      at ch.qos.logback.core.joran.GenericConfigurator.doConfigure(GenericConfigurator.java:143)
    at      at ch.qos.logback.core.joran.GenericConfigurator.doConfigure(GenericConfigurator.java:106)
    at      at ch.qos.logback.core.joran.GenericConfigurator.doConfigure(GenericConfigurator.java:56)
    at      at play.api.Logger$$anonfun$configure$8.apply(Logger.scala:248)
    at      at play.api.Logger$$anonfun$configure$8.apply(Logger.scala:247)
    at      at scala.Option.map(Option.scala:145)
    at      at play.api.Logger$.configure(Logger.scala:247)
    at      at play.api.Application$class.$init$(Application.scala:266)

所以,play找不到我创建的布局类。如何将布局类放在类路径上?

请注意,我还尝试通过以下方式暂存项目,

play clean compile stage

然后通过

target/start

从打包版本启动项目,我没有看到上面的缺少类错误。但是,我也从来没有看到任何输出,我什至没有看到构建的类。我向此类的每个构造函数添加了 System.out.println 语句,如下所示,以验证是否正在构造该类:

    public MonitorLayoutForLogback() {
        System.out.println("MonitorLayoutForLogback Constructor without arguments");
    }

    public MonitorLayoutForLogback(String program) {
        System.out.println("MonitorLayoutForLogback Constructor with program "+program);
        _program = program;
    }

    public MonitorLayoutForLogback(String program, String sGroup, String sid) {
        System.out.println("MonitorLayoutForLogback Constructor with program "+program+" sGroup "+sGroup+" sid "+sid);
        _program = program;
        MonitoringInfo.setServiceGroup(sGroup);
        MonitoringInfo.setServiceIdentifier(sid);
    }

我是 logback 配置的新手,所以我确定我遗漏了一些明显的东西。谢谢您的帮助。

4

2 回答 2

2

您看到的问题源于 logback 如何将类加载器用于配置为过滤器、布局、编码器等的类。

问题在于,对于所有依赖项,包括 logback,类都加载到DependencyClassloader稳定的类中,而项目代码加载ReloadableClassloader到稳定类加载器的子类中,并且在项目源代码更改时被丢弃。

由于 logback 不允许传递自定义类加载器,也不允许查找上下文类加载器,因此它会尝试在稳定的类加载器中解析项目类,但无法找到项目类。

在 logback 中更改该行为的请求被拒绝有证据表明没有计划更改该行为

有两种解决方法:

  • 如果您正在使用子项目,请将您的课程放入子项目中
  • 如果您不使用子项目,请将您的类打包到一个jar文件中并将该jar文件放入您的项目lib/目录中
于 2019-02-06T21:42:55.040 回答
-2

对我来说,我在启动我的应用程序时看到了这个错误,如下所示:

./activator -Dhttp.port=9000 -Dconfig.resource=local.conf -jvm-debug 9999 run

但是我通过使用 start 而不是 run 来解决这个问题

./activator -Dhttp.port=9000 -Dconfig.resource=local.conf -jvm-debug 9999 start

然而,这又产生了另一个问题。说 application.conf 找不到。我这样指定文件并不重要:

-Dconfig.resource=local.conf

将 local.conf 重命名为 application.conf 后,找到并使用了我用于日志记录的自定义布局类。

于 2016-04-28T21:32:22.063 回答