您的位置:首页 > 其它

log4j1 如何平滑升级到log4j2呢

2017-07-10 11:28 1486 查看
如题,log4j1 如何平滑升级到log4j2呢?  原来使用Logger.getLogger方法获取到org.apache.log4j.Logger对象的 ,现在LogManager.getLogger 方法获取到org.apache.logging.log4j.Logger  

知道了
  有一个专门的jar包  log4j-1.2-api-2.0.jar ,导入就可以了,原来代码没有影响。

官网适配器:http://logging.apache.org/log4j/2.x/log4j-1.2-api/


Log4j 1.2 Bridge

The Log4j 1.2 Bridge allows applications coded to use Log4j 1.2 API to use Log4j 2 instead.


Requirements

The Log4j 1.2 bridge is dependent on the Log4j 2 API and implementation. For more information, see Runtime
Dependencies.


Usage

To use the Log4j Legacy Bridge just remove all the Log4j 1.x jars from the application and replace them with the bridge jar. Once in place all logging that uses Log4j 1.x will be routed to Log4j 2. However, applications
that attempt to modify legacy Log4j by adding Appenders, Filters, etc may experience problems if they try to verify the success of these actions as these methods are largely no-ops.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: