Bladeren bron

920 JFlow微服务集成完成补充提交3

LT32820A 2 maanden geleden
bovenliggende
commit
7434f5cf79
1 gewijzigde bestanden met toevoegingen van 75 en 0 verwijderingen
  1. 75 0
      jeecg-boot/jflow-core/src/main/java/bp/difference/BeanUtils.java

+ 75 - 0
jeecg-boot/jflow-core/src/main/java/bp/difference/BeanUtils.java

@@ -0,0 +1,75 @@
+package bp.difference;
+
+/**
+ * 功能描述
+ *
+ * @author: scott
+ * @date: 2024年09月20日 AM 9:36
+ */
+import org.springframework.beans.BeansException;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.ApplicationContextAware;
+import org.springframework.stereotype.Component;
+
+/**
+ * @Description 一个类实现了ApplicationContextAware接口后,就可以获得ApplicationContext中的所有bean
+ *              用于解决某些类因为有被new出来的实例导致@Autowired失效的问题
+ * @Author wxp
+ * @Date 2024/7/9 12:47
+ */
+@Component
+public class BeanUtils implements ApplicationContextAware {
+
+    protected static ApplicationContext context;
+
+    /**
+     * 实现ApplicationContextAware接口的回调方法,设置上下文环境
+     * @param arg spring上下文对象
+     * @throws BeansException 抛出spring异常
+     */
+    @Override
+    public void setApplicationContext(ApplicationContext arg) throws BeansException {
+        if (context == null) {
+            context = arg;
+        }
+    }
+
+    /**
+     * 获取spring上下文对象
+     * @return 上下文对象
+     */
+    public static ApplicationContext getContext() {
+        return context;
+    }
+
+    /**
+     * 根据beanName获取bean
+     * @param beanName bean的名称
+     * @return bean对象
+     */
+    public Object getBean(String beanName) {
+        return context.getBean(beanName);
+    }
+
+    /**
+     * 根据beanName和类型获取bean
+     * @param beanName bean名称
+     * @param clazz    bean的Class类型
+     * @param <T>      bean的类型
+     * @return bean对象
+     */
+    public <T> T getBean(String beanName, Class<T> clazz) {
+        return context.getBean(beanName, clazz);
+    }
+
+    /**
+     * 根据类型获取bean
+     * @param clazz bean的Class类型
+     * @param <T>   bean的类型
+     * @return bean对象
+     */
+    public static <T> T getBean(Class<T> clazz) {
+        return context.getBean(clazz);
+    }
+}
+