Java应用获取当前应用执行的栈桢集合

springboot的源码中有这么一段代码

private Class deduceMainApplicationClass() {
        try {
            StackTraceElement[] stackTrace = new RuntimeException().getStackTrace();
            for (StackTraceElement stackTraceElement : stackTrace) {
                if ("main".equals(stackTraceElement.getMethodName())) {
                    return Class.forName(stackTraceElement.getClassName());
                }
            }
        }
        catch (ClassNotFoundException ex) {
            // Swallow and continue
        }
        return null;
    }

其中以下这句代码就能获取到当前应用正在执行的代码流(栈桢),数据的第一个元素就是当前正在执行的方法

StackTraceElement[] stackTrace = new RuntimeException().getStackTrace();

你可能感兴趣的:(Java应用获取当前应用执行的栈桢集合)