Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have multiple services which call on my database service, which uses Hibernate, and I would like the remote services to be able to create a query and then pass that to be processes. Ideally I would like to pass a Criteria Object but it looks like it needs a Session which they won't have access to. Is there a process similar to the Criteria Object I could use?

share|improve this question

1 Answer

up vote 4 down vote accepted

use a DetachedCriteria (org.hibernate.criterion.DetachedCriteria)

share|improve this answer
It would be nice not to carry the Hibernate Jar around to the other services but the DetachedCriteria will work. Thanks – Javamann May 27 '09 at 23:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.