19

我在我的 logback.xml 配置文件中有这个 appender:

<appender name="FILE"
            class="ch.qos.logback.core.rolling.RollingFileAppender">
    <file>classpath:addressbookLog.log</file>
    <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
      <Pattern>%d{dd MMM yyyy;HH:mm:ss} %-5level %logger{36} - %msg%n
      </Pattern>
    </encoder>
    <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
      <FileNamePattern>classpath:addressbookLog.%i.log.zip</FileNamePattern>
      <MinIndex>1</MinIndex>
      <MaxIndex>10</MaxIndex>
    </rollingPolicy>

    <triggeringPolicy
      class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
      <MaxFileSize>2MB</MaxFileSize>
    </triggeringPolicy>
  </appender>

这样我就可以通过类路径以相对方式指定要在其中打印日志的文件的路径,但是它不起作用,没有创建和写入文件 addressbookLog.log 。它仅适用于像 /home/andrea/.../resources/addressbookLog.log 这样的绝对路径您对如何使其适用于类路径有任何想法吗?

4

2 回答 2

26

3 章:Logback 配置:变量替换告诉我们引用外部定义的变量的各种方法,例如system propertiesclasspath

重要的配置是创建一个包含所有变量的单独文件。我们也可以引用类路径上的资源而不是文件。例如

logback.xml

<configuration>

  <property resource="resource1.properties" />

  <appender name="FILE" class="ch.qos.logback.core.FileAppender">
     <!-- Here we can refer to the variable 
      defined at the resource1.properties -->
     <file>${USER_HOME}/myApp.log</file>
     <encoder>
       <pattern>%msg%n</pattern>
     </encoder>
   </appender>

   <root level="debug">
     <appender-ref ref="FILE" />
   </root>
</configuration>

外部属性文件 (resource1.properties)

USER_HOME=/path/to/somewhere

请注意,这resource1.properties是在 中可用的资源classpath

完整版可以参考第 3 章:Logback 配置:变量替换。我希望这可能会有所帮助。

于 2013-05-13T02:24:27.697 回答
1

<FileNamePattern>${user.dir}/logs/addressbookLog.%i.log.zip</FileNamePattern>

于 2018-01-02T14:03:49.200 回答