从类名检索类的实例



我正在创建一个程序,它使用反射来注册一些带注释的接口并存储类名以供以后使用。我可以很容易地检索带注释的类,但知道我的问题是:假设这些接口中的每一个都被实例化为单例,有可能从类名检索类的实际实例吗?请注意,我已经知道如何实例化一个新对象。但我能得到一个已经存在的吗?我已经在谷歌上搜索了一段时间,我只找到了Class.forName()方法,我认为这不是我要找的(可能是错误的)。在我的项目中,我也在使用Spring,所以我也对Spring解决方案持开放态度。任何帮助都非常感谢。

谢谢!

EDIT:这就是我如何获得注释类:

ClassPathScanningCandidateComponentProvider componentProvider = new ClassPathScanningCandidateComponentProvider(false);
    componentProvider.addIncludeFilter(new AnnotationTypeFilter(AuraInput.class));
    componentProvider.addIncludeFilter(new AnnotationTypeFilter(AuraOutput.class));
    for(BeanDefinition bd : componentProvider.findCandidateComponents("com")){
        System.out.println("Interface: " + bd.getBeanClassName());
//The if checks if the class it's an instance of InputInterface
if(InputInterface.class.isAssignableFrom(Class.forName(bd.getBeanClassName()))) 
//Here I want to call a method of InputInterface which gives back a string... But how do I get the actual object assuming I have the class name?
System.out.println(((InputInterface) Class.forName(bd.getBeanClassName())).getInterfaceName());

只查询Spring应用程序上下文,例如使用ListableBeanFactory.html#getBeansOfType。关于单例也有类似的问题:如何从Spring获得实例化bean的列表?

相关内容

  • 没有找到相关文章

最新更新