spring-boot 是如何查找到 MainApplication Class

代码是在 SpringApplication.java 里的 deduceMainApplicationClass 函数来获取到 MainApplication class 的,
是通过遍历 StackTrace 来查找到的,代码如下

    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;
    }

你可能感兴趣的:(spring-boot 是如何查找到 MainApplication Class)