官方指导

http://logback.qos.ch/manual/configuration.html

规则

ch.qos.logback.core.joran.JoranConfiguratorBase.java (位于 core)

    @Override
protected void addInstanceRules(RuleStore rs) { // is "configuration/variable" referenced in the docs?
rs.addRule(new ElementSelector("configuration/variable"), new PropertyAction());
rs.addRule(new ElementSelector("configuration/property"), new PropertyAction()); rs.addRule(new ElementSelector("configuration/substitutionProperty"), new PropertyAction()); rs.addRule(new ElementSelector("configuration/timestamp"), new TimestampAction());
rs.addRule(new ElementSelector("configuration/shutdownHook"), new ShutdownHookAction());
rs.addRule(new ElementSelector("configuration/define"), new DefinePropertyAction()); // the contextProperty pattern is deprecated. It is undocumented
// and will be dropped in future versions of logback
rs.addRule(new ElementSelector("configuration/contextProperty"), new ContextPropertyAction()); rs.addRule(new ElementSelector("configuration/conversionRule"), new ConversionRuleAction()); rs.addRule(new ElementSelector("configuration/statusListener"), new StatusListenerAction()); rs.addRule(new ElementSelector("configuration/appender"), new AppenderAction<E>());
rs.addRule(new ElementSelector("configuration/appender/appender-ref"), new AppenderRefAction<E>());
rs.addRule(new ElementSelector("configuration/newRule"), new NewRuleAction());
rs.addRule(new ElementSelector("*/param"), new ParamAction(getBeanDescriptionCache()));
}

ch.qos.logback.classic.joran.JoranConfigurator.java (位于classic)

 @Override
public void addInstanceRules(RuleStore rs) {
// parent rules already added
super.addInstanceRules(rs); rs.addRule(new ElementSelector("configuration"), new ConfigurationAction()); rs.addRule(new ElementSelector("configuration/contextName"), new ContextNameAction());
rs.addRule(new ElementSelector("configuration/contextListener"), new LoggerContextListenerAction());
rs.addRule(new ElementSelector("configuration/insertFromJNDI"), new InsertFromJNDIAction());
rs.addRule(new ElementSelector("configuration/evaluator"), new EvaluatorAction()); rs.addRule(new ElementSelector("configuration/appender/sift"), new SiftAction());
rs.addRule(new ElementSelector("configuration/appender/sift/*"), new NOPAction()); rs.addRule(new ElementSelector("configuration/logger"), new LoggerAction());
rs.addRule(new ElementSelector("configuration/logger/level"), new LevelAction()); rs.addRule(new ElementSelector("configuration/root"), new RootLoggerAction());
rs.addRule(new ElementSelector("configuration/root/level"), new LevelAction());
rs.addRule(new ElementSelector("configuration/logger/appender-ref"), new AppenderRefAction<ILoggingEvent>());
rs.addRule(new ElementSelector("configuration/root/appender-ref"), new AppenderRefAction<ILoggingEvent>()); // add if-then-else support
rs.addRule(new ElementSelector("*/if"), new IfAction());
rs.addRule(new ElementSelector("*/if/then"), new ThenAction());
rs.addRule(new ElementSelector("*/if/then/*"), new NOPAction());
rs.addRule(new ElementSelector("*/if/else"), new ElseAction());
rs.addRule(new ElementSelector("*/if/else/*"), new NOPAction()); // add jmxConfigurator only if we have JMX available.
// If running under JDK 1.4 (retrotranslateed logback) then we
// might not have JMX.
if (PlatformInfo.hasJMXObjectName()) {
rs.addRule(new ElementSelector("configuration/jmxConfigurator"), new JMXConfiguratorAction());
}
rs.addRule(new ElementSelector("configuration/include"), new IncludeAction()); rs.addRule(new ElementSelector("configuration/consolePlugin"), new ConsolePluginAction()); rs.addRule(new ElementSelector("configuration/receiver"), new ReceiverAction()); }

具体属性规则可进入对应的Action 查看

比如:

public class ConfigurationAction extends Action {
static final String INTERNAL_DEBUG_ATTR = "debug";
static final String PACKAGING_DATA_ATTR = "packagingData";
static final String SCAN_ATTR = "scan";
static final String SCAN_PERIOD_ATTR = "scanPeriod";
static final String DEBUG_SYSTEM_PROPERTY_KEY = "logback.debug";
...

配置文件

1.清单

logback.groovy

logback-test.xml

logback.xml

2.优先级

  1. Logback tries to find a file called logback.groovy in the classpath.

  2. If no such file is found, logback tries to find a file called logback-test.xml in the classpath.

  3. If no such file is found, it checks for the file logback.xml in the classpath..

  4. If no such file is found, and the executing JVM has the ServiceLoader (JDK 6 and above) the ServiceLoader will be used to resolve an implementation of com.qos.logback.classic.spi.Configurator. The first implementation found will be used. See ServiceLoader documentation for more details.

  5. If none of the above succeeds, logback configures itself automatically using theBasicConfigurator which will cause logging output to be directed to the console.

3.备注

.groovy 是一种基于JVM(Java虚拟机)的敏捷开发语言,文件格式不同于xml

in the classpath 具体是哪里?directly under WEB-INF/classes/    or      classes/

第4项什么意思

第5项什么意思?等价于 logback-test.xml

<configuration>

  <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender> <root level="debug">
<appender-ref ref="STDOUT" />
</root>
</configuration>

<configuration

1. debug="true"(配置文件中)

<configuration debug="true">

或者等价方式(java文件中)

        LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();
// print logback's internal status
StatusPrinter.print(lc);

打印如下:

::, |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.groovy]
::, |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml]
::, |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.xml]
::, |-INFO in ch.qos.logback.classic.LoggerContext[default] - Setting up default configuration.

有时候是这样:

::, |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.groovy]
::, |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback-test.xml] at [file:/E:/e/workspace/simple-logback/target/classes/logback-test.xml]
::, |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender]
::, |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [STDOUT]
::, |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
::, |-INFO in ch.qos.logback.classic.joran.action.RootLoggerAction - Setting level of ROOT logger to DEBUG
::, |-INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [STDOUT] to Logger[ROOT]
::, |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - End of configuration.
::, |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@132b73b - Registering current configuration as safe fallback point

2. scan="true"

不指定单位时是毫秒,默认1分钟

<configuration scan="true" scanPeriod="30 seconds" >

修改logback.xml 文件之后,会监听配置文件的改动,30秒一次,如果监听到做了改动,则会使用最新的

变量

1.范围

LOCAL CONTEXT SYSTEM OS
作用于一个配置文件
作用于一个app(整个项目)
作用于多个app(整个JVM)
作用于操作系统

举例:
<property scope="context" name="nodeId" value="firstNode" />
scope允许的值有local、context、system ,默认是local

2.使用

a.引入properties文件,然后${some_properties_key}

Example: Variable file (logback-examples/src/main/java/chapters/configuration/variables1.properties)

USER_HOME=/home/sebastien

引入方式有两种:文件和资源

<configuration>
<property file="src/main/java/chapters/configuration/variables1.properties" />
</configuration>
<property resource="variables1.properties" />

b.定义到配置文件,然后${some_custom_key}

<property scope="context" name="nodeId" value="firstNode" />

c.直接使用${some_context_key}

重要属性

${HOSTNAME} 主机名

${CONTEXT_NAME} 上下文名, 默认值是default,可通过<contextName>yourname</contextName>设置

举例说明

配置发邮件的appender

<contextName>${app.context.name.en}</contextName>
...//省略部分代码
<subject>${CONTEXT_NAME} - ${HOSTNAME}</subject>

收到邮件后就是如下效果

意思是:位于adapp18号机器的mmsi项目发来错误日志邮件。

d.直接使用${some_system_key}

System.getProperties()

常用的有:

file.separator=\

catalina.base=E:\e\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0

user.home=C:\Documents and Settings\Administrator

设置日志文件路径时经常用到。

设置拦截级别

最新文章

  1. UI第十六节——UITabBarController详解
  2. java3
  3. ASP.NET MVC 模型和数据对象映射实践
  4. js时间冒泡,阻止事件冒泡
  5. selenium在chrome上运行报 Element is not clickable at point (1096, 26)
  6. maven 本地仓库的设置
  7. HTML5 拼图游戏
  8. jQuery 事件 - error() 方法
  9. pyenv安装及常用命令
  10. 在java代码中控制UI界面
  11. DarwinStreamServer 6.0.3 rtsp服务器搭建
  12. 每天学点SpringCloud(八):使用Apollo做配置中心
  13. Perhaps you are running on a JRE rather than a JDK
  14. 基于mysql对mybatis中的foreach进行深入研究
  15. js数据类型转换 ----流程控制
  16. PAT 1043 输出PATest(20)(代码+思路)
  17. Vim 操作符命令和动作命令
  18. JDBC 事务(二)回滚到保存点
  19. [搬运]CORBA中BOA和POA的含义
  20. ArcGIS软件操作——地图制图

热门文章

  1. UISegmentedControl-iOS
  2. poj-2828 Buy Tickets(经典线段树)
  3. PoJ 1595 PrimeCuts
  4. python学习笔记(十四): unittest
  5. 第二章:Android Studio概述(一)[学习Android Studio汉化教程]
  6. Python小知识点(2)
  7. 5、数据类型三:hash
  8. 用python3判断一个字符串 包含 中文
  9. SQL中Like语句的语法
  10. STL : 反向迭代器(Reverse Iterator)