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 …
3
votes
2answers
367 views
Why does query caching with Hibernate make the query ten times slower?
I'm currently experimenting with EJB3 as a prestudy for a major project at work. One of the things I'm looking into is query caching.
I've made a very simple domain model with JPA annotati …
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 …
3
votes
JPA/Hibernate in Java SE 6, Best Practices for data access
I'm not sure what's considered the best approach to this, but at my workplace, we have based most of our Hibernate interaction on these articles:
…
0
votes
Hibernate Query runs slow in the system, but fast when run directly.
In my experience, the main problem with complex queries in Hibernate is not the query itself, but rather the creation of all the objects representing the result set.
In my case at work, we …
