Springboot学习:整合log4j2打印System.out日志

Springboot整合log4j2打印System.out日志

记一次开发踩坑,springboot整合log4j2的过程中,try catch 捕获异常后,Exception.printStackTrace()方法却没有将错误日志打印到日志文件中,通过阅读源码发现,printStackTrace使用的是System.err进行日志打印,所以采用下面的办法进行处理,自定义PrintStream

1、继承PrintStream父类,并重写print这一类方法,使用log输出。

public class Log4j2ErrPrintStream extends PrintStream {
	private Logger log = LoggerFactory.getLogger("SystemErr");
	private static PrintStream instance = new Log4j2ErrPrintStream(System.err);
 
	private Log4j2ErrPrintStream(OutputStream out) {
		super(out);
	}
 
	public static void redirectSystemErr() {
		System.setErr(instance);
	}
 
	public void print(boolean b) {
		println(b);
	}
 
	public void print(char c) {
		println(c);
	}
 
	public void print(char[] s) {
		println(s);
	}
 
	public void print(double d) {
		println(d);
	}
 
	public void print(float f) {
		println(f);
	}
 
	public void print(int i) {
		println(i);
	}
 
	public void print(long l) {
		println(l);
	}
 
	public void print(Object obj) {
		println(obj);
	}
 
	public void print(String s) {
		println(s);
	}
 
	public void println(boolean x) {
		log.error(String.valueOf(x));
	}
 
	public void println(char x) {
		log.error(String.valueOf(x));
	}
 
	public void println(char[] x) {
		log.error(x == null ? null : new String(x));
	}
 
	public void println(double x) {
		log.error(String.valueOf(x));
	}
 
	public void println(float x) {
		log.error(String.valueOf(x));
	}
 
	public void println(int x) {
		log.error(String.valueOf(x));
	}
 
	public void println(long x) {
		log.error(String.valueOf(x));
	}
 
	public void println(Object x) {
		log.error(String.valueOf(x));
	}
 
	public void println(String x) {
		log.error(x);
	}
}

2、自定义SpringApplicationBuilder启动类

public class MyBuilder{
	public MyBuilder(Class<?> sources, String[] args) {
		//使用log4j2来打印system输出
		Log4j2OutPrintStream.redirectSystemOut();
		new SpringApplicationBuilder(sources).run(args);
	}
}

3、使用自定义的启动类启动服务

@SpringBootApplication
public class TestServer {
    public static void main( String[] args ) {
    	new MyBuilder(TestServer .class, args);
    }
}

各位大神走过路过有什么好的建议,欢迎在下方评论交流

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值