如何在 spring 上获取 bean 作用域?

how to get bean scope on spring?

我有以下 class:

public class ServiceFactory {

    private ServiceFactory() {

    }

    public static <T extends XXXX> T loadService(Class<T> klass) {
        ApplicationContext applicationContext = ApplicationContextProvider.getApplicationContext();
        return applicationContext.getBean(klass);
    }
}

它在运行时加载 bean(我有特定的理由这样做)。

我需要检查这个 bean 是否用 @Scope(BeanDefinition.SCOPE_PROTOTYPE) 注释或者只是强制它成为一个原型。

我该怎么做?

首先,您需要为 class 找到一个 bean 名称。然后您可以使用该名称查找 BeanDefinition 并获取范围。

public <T> String findScope(ConfigurableApplicationContext applicationContext, Class<T> type) {
        String[] names = applicationContext.getBeanFactory().getBeanNamesForType(type);
        if(names.length != 1){
            throw new IllegalArgumentException("Could not find bean of type" + type.getCanonicalName());
        }
        return applicationContext.getBeanFactory().getBeanDefinition(names[0]).getScope();
    }