gpt4 book ai didi

java - 带参数的 Spring FactoryBean 方法

转载 作者:搜寻专家 更新时间:2023-11-01 02:08:59 25 4
gpt4 key购买 nike

我正在通过 XML 配置和实例工厂方法实例化一些 bean:

<bean id="galleryBeanFactory" class="de.tikron.webapp.gallery.bean.XmlGalleryBeanFactory" />

<bean id="pictureBean" factory-bean="galleryBeanFactory" factory-method="createPictureBean" scope="prototype" />

我通过 BeanFactory.getBean("bean", arguments...) 以编程方式实例化我的原型(prototype) beans:

BeanFactory bf = ContextLoader.getCurrentWebApplicationContext();
PictureBean pictureBean = (PictureBean) bf.getBean("pictureBean", picture);

在 Spring 3 中,我想更改为带注释的基于 Java 的 bean 配置。这是我的 FactoryBean:

@Configuration
public class AnnotatedGalleryBeanFactory implements GalleryBeanFactory

@Bean
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
protected PictureBean createPictureBean(Picture picture) {
PictureBean bean = new PictureBean();
bean.setPicture(picture);
return bean;
}
}

我的问题:如何在这里传递参数?上面的代码导致 org.springframework.beans.factory.NoSuchBeanDefinitionException:没有找到类型为 [...model.Picture] 的符合条件的 bean 以进行依赖。

最佳答案

像这样的bean定义

@Bean
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
protected PictureBean createPictureBean(Picture picture) {
PictureBean bean = new PictureBean();
bean.setPicture(picture);
return bean;
}

bean 定义名称是 createPictureBean。您可以每次使用 BeanFactory#getBean(String, Object...) 调用它像这样

ApplicationContext ctx = ...; // instantiate the AnnotationConfigApplicationContext 
Picture picture = ...; // get a Picture instance
PictureBean pictureBean = (PictureBean) ctx.getBean("createPictureBean", picture);

Spring 将使用给定的参数(在本例中为 picture)来调用 @Bean 方法。

如果您没有提供参数,Spring 会在调用该方法时尝试 Autowiring 参数,但会失败,因为上下文中没有 Picture bean。

关于java - 带参数的 Spring FactoryBean 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22667156/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com