Spring 동적 추가 Bean
public class DataSourcesBeanFactoryPostProcessor implements BeanDefinitionRegistryPostProcessor {
private final List customerKeys;
public DataSourcesBeanFactoryPostProcessor(Environment springEnvironment) {
parseCustomerKeys(springEnvironment.getProperty("customerKeys"));
}
@Override
public void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry registry) throws BeansException {
for (String customerKey : customerKeys) {
String dataSourceName = "dataSource_" + customerKey;
BeanDefinitionBuilder definitionBuilder =
BeanDefinitionBuilder.genericBeanDefinition(JndiObjectFactoryBean.class);
definitionBuilder.addPropertyValue("jndiName", "jdbc/" + dataSourceName);
registry.registerBeanDefinition(dataSourceName, definitionBuilder.getBeanDefinition());
}
}
@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
// we actually only add new beans, but do not post process the existing definitions
}
private static List parseCustomerKeys(String rawCustomerKeys) {
if (StringUtils.isEmpty(rawCustomerKeys)){
throw new IllegalArgumentException("Property 'customerKeys' is undefined.");
}
return Collections.unmodifiableList(Arrays.asList(StringUtils.split(rawCustomerKeys, ",")));
}
}
참고: 봄 에 자신의 '동적' 빈 정 의 를 만 드 는 방법
Application Context 대상 을 받 을 수 있다 면 이런 식 으로 Bean 대상 을 등록 할 수도 있다.
context.getBeanFactory().registerSingleton(beanName, singletonObject)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
IDEA 프롬프트 Your activation code could not be validated (error 1653219)주의 사항 필요에 따라 hosts 파일을 수정해야 하지만 활성화할 때 IDEA 프롬프트가 표시되는 경우가 있습니다. 해결책 hosts 파일에 추가된jetbrains와 관련된 설정 항목 제거: hosts 파일에 구성 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.