vote up 0 vote down star

Is there a way to pass a DetachedCriteria object to a jax-ws service?

(my problem is that DetachedCriteria does not have a no-arg constructor, which is required by jax-ws)

flag

25% accept rate

1 Answer

vote up 0 vote down

I would say ... please don't do that.

It's a shame to use something as decoupled as web services and then tie it to a specific Java+Hibernate combination, not to mention that and changes to your hibernate config will likely ripple through all the clients.

You're better of creating some sort of Query object which mimics the Criteria:

public class Query {

     public void setTargetClass(...) {}
     public void addPropertyEquals(...) {}

     /* more add/set instructions */

}

and then at the server side you have a class which converts the Query to a Criteria.

link|flag
I agree, and disagree. Decoupling is fine, as long as it does not requires much extra work. I don't think the implementation will change from Hibernate and java. Why create another abstraction layer just for nothing? "Hibernate is a way of life" - so it is no easy to get rid of it... – pihentagy Jun 15 at 8:59
I meant to say that the client is coupled on Hibernate, which might not be what you want. You have a web service which in theory is client platform agnostic, but in practice is bound to java and hibernate. Perhaps you're better off using something like RMI if you're all java. – Robert Munteanu Jun 15 at 9:31

Your Answer

Get an OpenID
or

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