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.

link|improve this question

74% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Yes, it is possible to use EclipseLink JAXB (MOXy) to map any POJOs to XML. As EclipseLink also offers a world class JPA implementation, we are very familiar with the needs of mapping POJOs used with object-relational mapping tools.

MOXy offers many extensions for mapping JPA entities including support for bidirectional relationships and composite keys:

EclipseLink is offered as both a JAR and as OSGi enabled bundles. The one you need will depend on your environment (can you provide additional details?):

MOXy is now the default JAXB provider in WebLogic 12c, so if you are using this environment there is nothing you need to do to install MOXy:

If you are using GlassFish, then the following article will help you with the setup (MOXy will be included in GlassFish starting in version 3.1.2):

UPDATE

To get just the MOXy piece of EclipseLink you can OSGi bundles (from the URL below):

And include the following bundles on your class path:

  • org.eclipse.persistence.moxy_2.3.2.v20111125-r10461.jar
  • org.eclipse.persistence.core_2.3.2.v20111125-r10461.jar
  • org.eclipse.persistence.asm_2.3.2.v20111125-r10461.jar
link|improve this answer
Hi i develop in Seam 2.2.2 with Jboss 6.1, when i added Eclipslink.jar to my project my entitymanagers stoped working :/ do i need the whole eclipslink implementation to use moxy? – Trind Jan 9 at 12:26
How do i download just Moxy? and not the whole EclipseLink? – Trind Jan 9 at 13:03
1  
@Trind - I updated my answer with instructions for just including the MOXy portion of EclipseLink. – Blaise Doughan Jan 9 at 15:27
Thanks alot for all the help :) – Trind Jan 9 at 16:20
@Trind - No problem, please let me know if that fixes the issue that you are seeing. – Blaise Doughan Jan 9 at 16:35
feedback

Your Answer

 
or
required, but never shown

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