Hi, I have a multi-module maven project. One of the modules is a util layer that has some spring beans. I want to share the same spring beans within the other modules.
The other modules are deployed as non-related web-applications, so ideally my util beans would be singletons and I would only have one ref to these singletons throughout all the web apps.
I have found some links for sharing spring web application contexts, but it seems that they work within the same .ear, but in my case I have different web apps.
Is there a way of accomplishing this?