vote up 0 vote down star

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?

flag

50% accept rate

1 Answer

vote up 4 vote down check

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

link|flag
It would be nice not to carry the Hibernate Jar around to the other services but the DetachedCriteria will work. Thanks – Javamann May 27 at 23:14

Your Answer

Get an OpenID
or

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