Fra*_*teo 7 spring spring-boot
我试图创造ň动态使用豆类的数量BeanDefinitionRegistryPostProcessor。基于这个问题,我选择将其BeanDefinitionRegistryPostProcessor用于我的用例。
我在我的中定义了以下内容application.yml:
app:
downstream-services:
rest:
jsonPlaceHolder:
url: https://jsonplaceholder.typicode.com/todos
api-type: io.mateo.dynamicbeans.JsonPlaceHolderApi
Run Code Online (Sandbox Code Playgroud)
ConfigiruationProperties在这里连接到一个类:https : //github.com/ciscoo/dynamicbeans/blob/master/src/main/java/io/mateo/dynamicbeans/FeignConfigurationProperties.java
然后我想注入ConfigiruationProperties该类以及我在此处定义的工厂 bean:https : //github.com/ciscoo/dynamicbeans/blob/master/src/main/java/io/mateo/dynamicbeans/FeignClientAutoConfiguration.java
所以现在我有以下几点:
@Component
public class FeignClientFactoryPostProcessor implements BeanDefinitionRegistryPostProcessor {
private final FeignConfigurationProperties properties;
private final FeignClientFactory feignClientFactory;
public FeignClientFactoryPostProcessor(FeignConfigurationProperties properties, FeignClientFactory feignClientFactory) {
this.properties = properties;
this.feignClientFactory = feignClientFactory;
}
@Override
public void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry registry) throws BeansException {
properties.getDownstreamServices().getRest().forEach((beanName, props) -> makeClient(beanName, props, registry));
}
@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
// no-op
}
private void makeClient(String beanName, FeignClientProperties props, BeanDefinitionRegistry registry) {
GenericBeanDefinition beanDefinition = new GenericBeanDefinition();
beanDefinition.setBeanClass(props.getApiType());
beanDefinition.setInstanceSupplier(() -> feignClientFactory.create(props));
registry.registerBeanDefinition(beanName, beanDefinition);
}
}
Run Code Online (Sandbox Code Playgroud)
它应该创建的单个 bean 是在此处注入服务类:https : //github.com/ciscoo/dynamicbeans/blob/master/src/main/java/io/mateo/dynamicbeans/JsonPlaceHolderService.java
我遇到的问题是:
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [io.mateo.dynamicbeans.FeignClientFactoryPostProcessor]: No default constructor found; nested exception is java.lang.NoSuchMethodException: io.mateo.dynamicbeans.FeignClientFactoryPostProcessor.<init>()
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:83) ~[spring-beans-5.1.2.RELEASE.jar:5.1.2.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1262) ~[spring-beans-5.1.2.RELEASE.jar:5.1.2.RELEASE]
... 17 common frames omitted
Caused by: java.lang.NoSuchMethodException: io.mateo.dynamicbeans.FeignClientFactoryPostProcessor.<init>()
at java.base/java.lang.Class.getConstructor0(Class.java:3350) ~[na:na]
at java.base/java.lang.Class.getDeclaredConstructor(Class.java:2554) ~[na:na]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:78) ~[spring-beans-5.1.2.RELEASE.jar:5.1.2.RELEASE]
... 18 common frames omitted
Run Code Online (Sandbox Code Playgroud)
但是当我final从两个属性和定义的构造函数中删除关键字时,我得到一个NullPointerException.
那么我如何动态创建N个 bean,以便它们及时可供我的任何@Service类使用?
我知道https://spring.io/projects/spring-cloud-openfeign。我在这里重新创建了我的问题,以说明我在动态创建 SOAP 客户端的不同项目中遇到的相同问题。
更新:进行以下更改:https : //github.com/ciscoo/dynamicbeans/commit/4f16de9d03271025cd65d95932a3e854c0619c29,现在我可以完成我的用例了。
正如您所链接的问题的答案所暗示的那样,您不能将依赖项注入到 bean 工厂后处理器中。您需要以编程方式绑定它,而不是注入您的配置属性类。在 Spring Boot 2.x 中,这是使用BinderAPI实现的:
新的 Binder API 也可以
@ConfigurationProperties在您自己的代码之外直接使用。例如,下面将结合到List的PersonName对象:Run Code Online (Sandbox Code Playgroud)List<PersonName> people = Binder.get(environment) .bind("my.property", Bindable.listOf(PersonName.class)) .orElseThrow(IllegalStateException::new);配置源可以用 YAML 表示,如下所示:
Run Code Online (Sandbox Code Playgroud)my: property: - first-name: Jane last-name: Doe - first-name: John last-name: Doe
| 归档时间: |
|
| 查看次数: |
1059 次 |
| 最近记录: |