I have a multi-module maven project. One of the modules is the usage level that spring beans has. I want to share with the same spring beans in other modules.
Other modules are deployed as non- related web applications, so ideally my util beans will be singleton, and I will have only one ref for these singleton in all web applications.
I found some links for exchanging spring web application contexts, but it seems that they work in the same .ear, but in my case I have different web applications.
Is there any way to accomplish this?
source share