0
votes
0answers
14 views

How do you expose a Grails domain model using OData?

Ideally there would be a plugin that automatically exposed the Grails domain model as OData but I can't see one. There is OData4j which will let you expose POJOs or JPA as OData however it uses ...
1
vote
1answer
64 views

JAXB - Unexpected elements in XML output

I have a class called Building. It has a list of BuildingBenchAssociation records (List<BuildingBenchAssociation> benches) BuildingBenchAssociation has a composite id made up of buildingId and ...
0
votes
1answer
31 views

Cannot serialize JPA bean due to presence of proxies

I am trying to expose an object as XML using JAX-RS. I have a class called Client and I am returning its instance like this: @Transactional(readOnly=true) @GET ...
2
votes
1answer
71 views

Mapping extra parameters with JAX-RS and Jackson

I'm working on a project that uses JAX-RS, Jackson, and JPA. The JAX-RS resources map incoming JSON directly to the POJO (JPA) that is to ultimately be persisted. @POST ...
5
votes
2answers
135 views

@Stateless webservice with JPA+JTA: How to commit changes of managed entity?

I have the following simple webservice declared as @Stateless EJB running on GlassFish 3.1.2.2 with EclipseLink 2.4.1 using a JTA DataSource to connect to a MySQL database: @POST ...
1
vote
1answer
65 views

JAX-RS return a collection of your custom object?

I have a webservice that uses JAX-RS, JPA and JAXB. I've writen a method that should return a collection of objects from my database. This doesn't happen though. It only return a single item. My ...
0
votes
1answer
183 views

Null pointer exception with Jax RS

I have written a simple piece of code to have JAX RS talk to JPA to retrieve a list of customers from the database. I keep getting a null pointer exception. Please could someone take a look at the log ...
0
votes
1answer
41 views

How to use JTA to POST an array of objects using Jax-RS?

I have a jax-rs REST service that POSTs an ArrayList<Book> objects to the server. On the server, I loop through each Book, convert it into a BookEntity (I'm using JPA), and then persist each ...
1
vote
0answers
121 views

JPA to JSON with only primary key/normalize data

I have two JPA Entities (Patient and Clinic) with OneToMany ManyToOne relationship. I would like to return the data in JSON format (currently with org.apache.cxf.jaxrs.provider.JSONProvider). Below is ...
0
votes
2answers
58 views

Identifying the set of Java EE specs for given requirements - a case for EJB, JPA and REST?

I am trying to identify the correct set of technologies to develop an application that supports the following. Provide web service capabilities (preferably REST) Be able to handle updates to ...
2
votes
1answer
66 views

Google App Engine (GAE) - How to control the depth of the object graph loaded by JPA and exposed through JAX-RS?

I am tempted to use the GAE SQL cloud through JPA, but should this go wrong I will fall back to using the datastore with JPA. I can foresee that if my domain objects are annotated such that Entity A ...
0
votes
2answers
87 views

What Data Persistence method to use?

I am making an android app which will retrieve some information from a remote mysql database. I will be using restful java web service using JAX-RS which will interact with mysql db to retrieve data ...
2
votes
5answers
207 views

Serialize a java.util.list in JAX-RS

I have the class book: @Entity @Table(name = "books") @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) @XmlType public class Book { @Id @XmlAttribute private String isbn; ...
2
votes
0answers
120 views

Integral restful JPA over Hibernate

It seems that Eclispelink, OpenJPA and DataNucleus already provide integral restful JPA out of box. How about Hibernate? I'm not looking for any scalfold framework that generates restful web ...
2
votes
0answers
165 views

Use EntityManager with JAX-RS and Jackson in a custom deserializer

I have data for a customer formated in JSON : { "name":"My Name", "company":{ "id":9 } } My entity looks like : @Entity public class Customer { @Id Integer id; ...
2
votes
2answers
1k views

How to create webservice function that return xml as well as json?

I have created a web service function: @GET @Path("getusers/") @Produces({"application/xml","application/json"}) public Object getUsers() { String distanceQuery="SELECT ...
1
vote
1answer
377 views

How to close an entitymanager when used with Jackson and Jax-rs

I am using JPA (hibernate), JAX-RS (Jersey) and Jackson. How can I close my entity manager after my packet is built and sent? The following does not work and gives me an error. It appears to be ...
2
votes
1answer
334 views

Including a JPA-Project in a JAX-RS REST-Service Application

I have written a JPA-Project which encapsulates all my entities. Since these entities are also needed in the REST-Service project I exported the JPA-Project as a *.jar and included it in the ...
3
votes
1answer
590 views

How to manage transactions with JAX-RS, Spring and JPA

I'm using JAX-RS to provide an HTTP-based interface to manage a data model. The data model is stored in a database and interacted with via JPA. This allows me to modify the interface to the data ...
0
votes
1answer
302 views

How do I inject a Spring bean into Apache Wink?

How do I inject Spring-managed beans into Apache Wink? I have a wink application started in web.xml that starts fine if I stub out a dummy data service @Autowired under an interface within it. I have ...
1
vote
1answer
1k views

No Persistence provider for EntityManager named ws-persist

I'm building a JAX-RS web service (Jersey) and now I'm trying to start using JPA. I have selected eclipselink to manage this persistence. To start off, I'm writing some junit test cases until I ...
-1
votes
1answer
338 views

Using REST as Business Logic Layer ,Con and Pro [closed]

I am thinking of creating an Application as i shown in the figure, i am creating the presentation layer in PHP, where JAX-RS REST Service is working as Business Layer and JPA as Data Object Layer ...
2
votes
2answers
567 views

Why there are “too many connections” in JPA?

This is my code (it's JAX-RS + JPA): @Path("/") public class Foo { private static final EntityManagerFactory FACTORY = Persistence.createEntityManagerFactory("foo"); @POST public void ...
0
votes
1answer
388 views

Calling a HTTP service within a JPA/JTA transaction - transaction integrity

I have a JSF/EJB/JPA application which uses container managed persistence. There is one case where a call is made to an external service via HTTP which has a cost, this cost being allocated back to ...
2
votes
2answers
1k views

JPA LazyInitializationException when returning a JAXB Object through a Webservice

I'm working with JBoss. i created a simple JAX-RS Webservice that retrieves a JPA Entitiy from the database and returns it to the user. As soon as I have a relationship (@OneToOne) to another Entity I ...
2
votes
3answers
2k views

How to handle persistence context (EntityManager) with jax-rs sub-resource locators?

I am using jax-rs restful web service in my application with sub-resource locators. However after passing entityManager to sub-resource I cannot persist any new objects in this sub-resource. The ...
1
vote
1answer
952 views

Is it possible to convert JPQL query result with multiple Object types into JSON format automatically?

I'm using JPA Toplink, JAX-RS, NetBean6.9 So far I successfully convert JPQL query result which is List with one object type into JSON. Following works fine, it generates JSON by the time it gets to ...
1
vote
1answer
1k views

How and who should inject PersistenceContext when running tests through Jersey/Grizzly?

I have this class (mix of JAX-RS/Jersey and JPA/Hibernate): public class Factory { @PersistenceContext(unitName = "abc") EntityManager em; @Path("/{id}") @GET public String ...
4
votes
2answers
871 views

Using CDI + WS/RS + JPA to build an app

@Path(value = "/user") @Stateless public class UserService { @Inject private UserManager manager; @Path(value = "/create") @GET @Produces(value = MediaType.TEXT_PLAIN) public ...
3
votes
2answers
2k views

NPE Thrown Marshalling Entity in JAX-RS

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) ...