博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Servlet中使用Log4j2
阅读量:6326 次
发布时间:2019-06-22

本文共 2509 字,大约阅读时间需要 8 分钟。

  因为Servlet常用的版本有两个,即2.5与3.0。要在web application中使用Log4j2,还需要加入log4j-web的jar包。log4j通过web.xml中的context参数log4jConfiguration来查找配置文件。如果没有的话,那么会在WEB-INF目录下查找以“log4j2”开头命名的xml文件。如果不止一个log4j2开头的文件,那么会优先使用log4j2-name命名的文件,name为项目名称。否则会使用第一个文件。

  log4j2能够在Servlet3.0下正常使用且不用配置。因为在Servlet3.0的API中加入了ServletContainerInitializer,它自动启动了Filter和ServletContextListener(这两个类在Servlet2.5中需要配置)。官方文档有一个注意事项:

Important Note! For performance reasons, containers often ignore certain JARs known not to

contain TLDs or ServletContainerInitializers and do not scan them for web-fragments and
initializers. Importantly, Tomcat 7 <7.0.43 ignores all JAR files named log4j*.jar, which prevents this
feature from working. This has been fixed in Tomcat 7.0.43, Tomcat 8, and later. In Tomcat 7 <7.0.43
you will need to change catalina.properties and remove "log4j*.jar" from the jarsToSkip property. You may need to do something similar on other containers if they skip scanning Log4j JAR files.

  在tomcat版本小于7.0.43的时候,需要修改catalina.properties文件的 jarToSkip配置,把“log4j*.jar”去掉。

  如果你不想让log4j2自动启动,那么可以配置isLog4jAutoInitializationDisabled参数。

1 
2
isLog4jAutoInitializationDisabled
3
true
4

 

  在Servlet2.5中,需要我们自己配置filter和Listener。配置规则如下:

1 
2
org.apache.logging.log4j.web.Log4jServletContextListener 3
4
5
6
log4jServletFilter
7
org.apache.logging.log4j.web.Log4jServletFilter
8
9
10
log4jServletFilter
11
/*
12
REQUEST
13
FORWARD
14
INCLUDE
15
ERROR
16
ASYNC

  以上两种情况都允许自定义context parameters。有3个参数可供配置:

  isLog4jContextSelectorNamed:布尔类型配置,由它选择是否使用JndiContextSelector。如果它设为true的话,那么log4jContextName一定要配置或者在web.xml中指定display-name。并且log4jConfiguration也要配置一个URL,这个URL是log4j2的配置文件地址,但这个不是必须要配置的。

  log4jContextName:配置display-name。

  log4jConfiguration:log4j配置文件的路径。

示例如下:

1 
2
isLog4jContextSelectorNamed
3
true
4
1 
2
log4jContextName
3
myApplication
4
1 
2
log4jConfiguration
3
file:///etc/myApp/myLogging.xml
4

这里的log4jConfiguration可以写绝对地址,也可以写相对地址。

 

转载于:https://www.cnblogs.com/bigbang92/p/log4j2_servlet.html

你可能感兴趣的文章
什么是.Net, IL, CLI, BCL, FCL, CTS, CLS, CLR, JIT
查看>>
Atlas Control ToolKit 发布
查看>>
Dundas 系列
查看>>
Windows的命令行查看,修改,删除,添加环境变量
查看>>
iOS 图文混排
查看>>
GC是什么? 为什么要有GC?
查看>>
JQuery EasyUi之界面设计——母版页以及Ajax的通用处理(三)
查看>>
童年记忆
查看>>
Selenium Python bindings 文档一
查看>>
directX的16位和24位的色彩模式
查看>>
WINDOWS 8
查看>>
ASP.NET MVC涉及到的5个同步与异步,你是否傻傻分不清楚?[下篇]
查看>>
spring(10)
查看>>
Ubuntu 12.04 LTS 及ubuntu14.10 -- NFS安装
查看>>
hdu 5063 Operation the Sequence(Bestcoder Round #13)
查看>>
django orm多条件查询及except处理不存在记录的样码
查看>>
ylbtech-QQ(腾讯)-群空间-数据库设计
查看>>
面试书籍
查看>>
模式识别 - 处理多个演示样本研究(MIL)特点(matlab)
查看>>
lintcode :Remove Duplicates from Sorted Array II 删除排序数组中的重复数字 II
查看>>