I have a set of domain classes that are using hibernate for persistence. This is working fine. But now I'm trying to implement XML/JSON marshalling on top of this, and I have some problems with Jackson and Sets it seems.
So my code is basically this:
@XmlRootElement
class IdentifiableObject {
@XmlAttribute
Integer id;
@XmlElement
String name;
}
@XmlRootElement
class A extends IdentifiableObject {}
@XmlRootElement
class B extends IdentifiableObject {
@XmlElementWrapper(name = "aSet")
@XmlJavaAdapter( IdentifiableXmlAdapter.class )
@XmlElement( name = "a" )
Set<A> As;
}
This works fine in JAXB (which I am also using), but trying to marshall this using Jackson (using JaxbAnnotationIntrospector) I get this exception:
Unable to marshal: org.hibernate.collection.PersistentSet cannot be cast to IdentifiableObject (through reference chain: B["aSet"])
So it seems the jackson marshaller sees the hibernate proxy, and not the actual bean.. but JAXB uses this fine.
My webview is using the filter org.springframework.orm.hibernate3.support.OpenSessionInViewFilter which makes sure that the hibernate session is opened (and reused).
Any suggestions on how to fix this?
UPDATE: So it actually seems that if I remove the @XmlJavaAdapter from the set, it works on the jackson side.. but I need to rewrite my object since it actually has a cyclic reference. Why would @XmlJavaAdapter mess the type up here? and only with Jackson?
-- Morten