jaxb « Eclipse « JPA Q&A





1. NPE Thrown Marshalling Entity in JAX-RS    stackoverflow.com

I have a JAX-RS webservice that makes use of JPA entity classes. I have a resource class like this:

@Path("/entity")
public class MyEntityResource
{
    @GET
    @Produces(MediaType.APPLICATION_XML)
  ...

2. Jpa entities over a JAX WS services without infinite loop    stackoverflow.com

How can I send JPA generated entities over an JAX WS web service without getting the an XML infinite cycle exception because of the cycle of references in those entities? Any idea? ...

3. JPA persistence property interfering with JAXB    stackoverflow.com

I have a library of JAXB/Entity objects I am using to unmarshall a xml stream. I can do so with no problems just running as a Java SE application. I ...

4. JPA to JAXB issue    stackoverflow.com

I have entities which are created from eclipseLink.I am trying to use the same objects to get generate an xml.I have a primarykey reference inside a class and I am not ...