1
vote
1answer
268 views

Using MOXy to avoid cycle, @XmlInverseReference @XmlID

I am using Hibernate and RESTeasy, i try to avoid a cycle with these entities, as i have a OneToMany (ManyToOne) bidirectionnal relation between Artiste and Oeuvre entities : Oeuvre.java import ...
1
vote
1answer
123 views

EclipseLink JAXB and JPA memory overhead

I have an application with lots of entities (3000) which needs to be returned by a web services and stored in the database. I've started with Hibernate and CXF / Sun JAXB implementation. After some ...
0
votes
0answers
98 views

Changing JAXB unmarshalling as per the ORM structure

I am receiving following XML structure: <Parent> <Holding id="111"/> <Party id="yyy"/> <Party id="xxx"/> <Party id="zzz"/> <Relation ...
1
vote
0answers
145 views

Hibernate: Conditional One To One mapping

I am saving a XML to database with the help of JAXB and Hibernate. There are two elements at the same level <ElementA id="111-aa> <childern/> </ElementA> <Relation ...
2
votes
1answer
254 views

XmlInverseReference, Hibernate, JAXWS and Moxy

I can not seem to get moxy working with JAX-WS web services and hibernate. Despite what I do, @XMLInverseReference does not work. I'd expect it to fill in the application variable on a Site. What am I ...
2
votes
1answer
444 views

Jaxb Moxy with Hibernate? on Jboss 6.1

Is it possible to use Moxy With Hibernate? And if so how do i install it, have tried to find documentation of it but found nothing.
5
votes
1answer
2k views

(moxy) jaxb marshaling and hibernate proxy objects

In the last couple of days I have tried to make support for XML marshalling/unmarshalling of a Hibernate model, using MOXy JAXB. Trying to do this, I have run into a problem with hibernates proxy ...