8
votes
9answers
1k views
What’s the best way to share business object instances between Java web apps using JBoss and Spring?
We currently have a web application loading a Spring application context which instantiates a stack of business objects, DAO objects and Hibernate. We would like to share this stack with another we …
1
vote
What’s the best way to share business object instances between Java web apps using JBoss and Spring?
Thank you for your answers so far. We're still not quite there, but we have tried a few things now and see things more clearly. Here's a short update:
The solution which appears to be the m …
1
vote
spring BeanIsAbstractException
map.put(beansName[mnCnt], factory.getBean(beansName[mnCnt]));
There's your problem, isn't it? By calling getBean with the name of the abstract bean, you try to instantiate …
