如何跟踪异常的传播路径?
Posted yyl141
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何跟踪异常的传播路径?相关的知识,希望对你有一定的参考价值。
package we; public class PrintExceptionStack { public static void main( String args[] ) { try { method1(); } catch ( Exception e ) { System.err.println( e.getMessage() + " " ); e.printStackTrace(); } } public static void method1() throws Exception { method2(); } public static void method2() throws Exception { method3(); } public static void method3() throws Exception { throw new Exception( "Exception thrown in method3" ); } }
以上是关于如何跟踪异常的传播路径?的主要内容,如果未能解决你的问题,请参考以下文章
利用 ASP.NET Core 中的标头传播实现分布式链路跟踪
利用 ASP.NET Core 中的标头传播实现分布式链路跟踪