I am trying to help the ActiveMQ people with integration of their configuration file format into a spring application context.
Currently they use a custom XmlBeanDefinitionReader that uses XSLT to transform their xml file format into a normal spring format.
This works fine when someone loads their configuration by instantiating a ActiveMQBeanFactory instance (which uses ActiveMQBeanDefinitionReader internally)
The issue that I am facing is the integration of this process with a normal applicationContext.xml file.
I want to merge the bean definitions from a transfomed ativeMQ.xml file into an existing application context. How can this be done ?
I attempted to do it with :
Code:<bean id="activeMQ" class="ActiveMQ"> <property name="location"><value>classpath:activeMQ.xml</value></property> </bean>Code:class ActiveMQ implements InitializingBean, ApplicationContextAware { ... public void afterPropertiesSet() throws Exception { // validation of properties here BeanDefinitionRegistry registry = null; if (parentContext instanceof ConfigurableApplicationContext) { // merge the bean befinitions into the parent's registry BeanFactory beanFactory = ((ConfigurableApplicationContext)parentContext).getBeanFactory(); if (beanFactory instanceof BeanDefinitionRegistry) { registry = (BeanDefinitionRegistry)beanFactory; new ActiveMQBeanDefinitionReader(registry).loadBeanDefinitions(location); } } // handle (registry == null) case } }
This code causes an exception
Code:java.util.ConcurrentModificationException at java.util.LinkedList$ListItr.checkForComodification(LinkedList.java:552) at java.util.LinkedList$ListItr.next(LinkedList.java:488) at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:198) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:279) at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:81) at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:66) at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:57) at Main.main(Main.java:13)
I have also considered making a child context, and load the activeMQ definitions into there, but the problem is that some beans defined in activeMQ.xml may be needed in the parent context.
Any thoughts / ideas / suggestions ?


Reply With Quote