Often people want to have multiple web applications share access to a single application context. How to do that is described e.g. here.
This question is about the opposite: having multiple application contexts inside a single web application. Usually this is easy, you just create them and use them.
However there are some situations caused by static variables in Spring aspects where it becomes impossible, such as:
- You have two application contexts X and Y, both of which create a
MyBeanwhich has a@Transactionalannotation - Both X and Y contain their own transaction managers
- Both X and Y have
<tx:annotation-driven mode="aspectj"/>declarations - You are doing build-time AspectJ weaving
In this case the problem is that the <tx:annotation-driven mode="aspectj"/> is in effect converted into a bean like this:
<bean class="org.springframework.transaction.aspectj.AnnotationTransactionAspect"
factory-method="aspectOf"/>
Note that this returns the aspect object for AnnotationTransactionAspect, which is a singleton stored in a static variable. AnnotationTransactionAspect extends TransactionAspectSupport, which contains instance fields that e.g. cache the transaction manager.
The effect is that even though the beans in X and Y are totally separated, they will be fighting over the same instance fields in the AnnotationTransactionAspect aspect singleton. This causes e.g. "no transaction is in progress" exceptions because somebody gets the wrong transaction manager.
The same thing happens with @Configurable: the bean factory used to configure beans is stored in a static variable (see AnnotationBeanConfigurerAspect.beanConfigurerSupport). This is more of a problem, because you can avoid AspectJ with @Transactional, but you can't avoid it with @Configurable.
I can think of three solutions:
- Stop using aspects
- Write my own aspect
- Create/set new context class loaders in the threads that create X and Y
Option #1 is bad because I really like @Configurable.
Option #2 does not look like fun.
Option #3 looks like the easy way out.
So how would option #3 work? This is where I get fuzzy. I would need the Spring classes to be loaded into different class loaders in X and Y. That means the context class loader couldn't delegate normally to it's parent (the web application class loader), etc. How would you set this up?
Thanks.
@Configurablealso but maybe you should consider just not sharing the application context across web apps and instead use REST or RPC (see Finagle) for IPC across your web apps. – Adam Gent Aug 24 '12 at 14:41@ThreadConfigurableand@ThreadTransactionalin dellroad-stuff – Archie Aug 24 '12 at 17:43@Thread*. Can you post your solution (its ok to answer your own questions). – Adam Gent Aug 24 '12 at 19:09