我是靠谱客的博主 友好手链,最近开发中收集的这篇文章主要介绍maven多级项目使用 slf4j+log4j,以及自定义配置文件路径,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

maven多级项目使用 slf4j+log4j,以及自定义配置文件路径

我的maven多级结构如下:

sysimple
    |--integration
    |--commons
        |--pom.xml
    |--plugins
        |--pom.xml
    |--web
        |--pom.xml
    |--pom.xml

其中依赖情况是: web依赖于commons和plugins。plugins依赖于commons。integration中定义了打包的方法与资源文件。

首先在sysimple/pom.xml中管理slf4j的版本:

<dependencyManagement></dependencyManagement>中间添加:
    <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-api</artifactId>
         <version>1.7.7</version>
    </dependency>
    <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-log4j12</artifactId>
         <version>1.7.7</version>
    </dependency>

由于所有的模块均引用commons,因此只需要在commons中添加slf4j的依赖即可:

<dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-api</artifactId>
    </dependency>
    <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-log4j12</artifactId>
    </dependency>

下面即可使用slf4j,在需要使用的地方以如下方式使用:

public class StartWeb {
	private static final Logger logger = LoggerFactory.getLogger(StartWeb.class);
	public static void main(String[] args){
		logger.info("this is a example");
	}
}

默认情况下,slf4j-log4j会在src/main/java中查找log4j.properties,如果需要指定配置文件的位置,需要在启动时手动加入Jvm的参数,我的例子中添加了-Dlog4j.configuration=file:../integration/conf/sysimple-log4j.properties。在使用绝对路径时是不需要使用file:的,linux端也不需要file:。在运行的时候,slf4j会根据你指定的路径去加载配置文件。配置文件的内容我给出以下例子, 读者可以另行查找配置文件的格式:

log4j.rootLogger=INFO,system.out  
log4j.appender.system.out=org.apache.log4j.ConsoleAppender  
log4j.appender.system.out.layout=org.apache.log4j.PatternLayout  
log4j.appender.system.out.layout.ConversionPattern=SysimpleServer Logger-->%5p{%F:%L}-%m%n 
log4j.logger.thisProject.file=INFO,thisProject.file.out  
log4j.appender.thisProject.file.out=org.apache.log4j.DailyRollingFileAppender
log4j.appender.thisProject.file.out.File=../integration/logs/sysimple-logs.log   
log4j.appender.thisProject.file.out.layout=org.apache.log4j.PatternLayout

最后

以上就是友好手链为你收集整理的maven多级项目使用 slf4j+log4j,以及自定义配置文件路径的全部内容,希望文章能够帮你解决maven多级项目使用 slf4j+log4j,以及自定义配置文件路径所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部