From 956e75d2e13617cb2697dfbc34218b48e082c162 Mon Sep 17 00:00:00 2001 From: HzjNeverStop <441627022@qq.com> Date: Fri, 8 Dec 2023 15:16:42 +0800 Subject: [PATCH] starutp ignore low cost spring.context.beans.post-process (#1273) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * starutp ignore low cost spring.context.beans.post-process * starutp ignore low cost spring.context.beans.post-process --------- Co-authored-by: 致节 --- .../java/com/alipay/sofa/boot/startup/StartupReporter.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sofa-boot-project/sofa-boot/src/main/java/com/alipay/sofa/boot/startup/StartupReporter.java b/sofa-boot-project/sofa-boot/src/main/java/com/alipay/sofa/boot/startup/StartupReporter.java index c08c9071e..88e49d820 100644 --- a/sofa-boot-project/sofa-boot/src/main/java/com/alipay/sofa/boot/startup/StartupReporter.java +++ b/sofa-boot-project/sofa-boot/src/main/java/com/alipay/sofa/boot/startup/StartupReporter.java @@ -53,6 +53,8 @@ public class StartupReporter { public static final String SPRING_CONTEXT_BEAN_FACTORY_POST_PROCESSOR = "spring.context.bean-factory.post-process"; + public static final String SPRING_BEAN_POST_PROCESSOR = "spring.context.beans.post-process"; + public static final String SPRING_CONFIG_CLASSES_ENHANCE = "spring.context.config-classes.enhance"; public static final Collection SPRING_BEAN_INSTANTIATE_TYPES = Set @@ -64,7 +66,8 @@ public class StartupReporter { SPRING_CONTEXT_BEAN_FACTORY_POST_PROCESSOR); public static final Collection SPRING_CONFIG_CLASSES_ENHANCE_TYPES = Set - .of(SPRING_CONFIG_CLASSES_ENHANCE); + .of(SPRING_CONFIG_CLASSES_ENHANCE, + SPRING_BEAN_POST_PROCESSOR); private final StartupStaticsModel startupStaticsModel;