tags:

views:

4755

answers:

6
+2  Q: 

GWT with JPA

I'm trying to build database application using GWT 1.5.3. I use JPA annotations with my objects. It seems in hosted mode GWT's RPC works fine. But when I try to compile my app using GWT-compiler I get errors like: "The import javax.persistence cannot be resolved", "Entity cannot be resolved to a type". toplink-essentials.jar is already included in my project path. What settings else do I need to solve this problem?

+3  A: 

You need to include the source code for the JPA annotations in the build path for your GWT project. See here for more details:

http://code.google.com/p/google-web-toolkit/issues/detail?id=1830&can=1&q=jpa

Specifically this jar file which will fix your problem:

http://google-web-toolkit.googlecode.com/issues/attachment?aid=1475633892125294312&name=jpa-annotations-source.jar

rustyshelf
A: 

Thank you . I'm already trying to do this. I included this jar in my eclipse classpath and also configured myapp.gwt.xml the following way:

  <inherits name='javax.Persistence'/>

However, GWT-compiler says that it is "Unable to find 'javax/Persistence.gwt.xml' on your classpath;". What might be wrong? My custom classes which use JPAs have no problem referencing javax.persistense.*; I also see that jpa-annotations-source.jar has Persistense.gwt.xml included. Thank you.

synergetic
When you specify the above declaration, you are inheriting a GWT module, not Java classes. Please consult the docs.
Miguel Ping
+1  A: 

Ok, I've found what I was missing. I needed to include jpa-annotations-source.jar in my GWT-compiler path in myapp-compile.cmd script (or in ant build file). By the way can anyone tell me the origin of this jpa-annotations-source.jar file?

synergetic
Also, I should say that in GWT 1.5 one doesn't need to include the above jar. Instead just use production jar such as toplink-essentials.jar; of course pass it to your GWT-compiler to compilation succeed; and DO NOT write <inherits name='javax.Persistence'>in your app.gwt.xml
synergetic
+4  A: 

You can use Gilead (http://gilead.sourceforge.net) library to seamlessly manage JPA entities with GWT.

Regards

+1  A: 

I am also working with JPA <--> GWT data transformation etc.

In an effort to eliminate the DTO layer I used Gilead too.

My objection here is about translating javax.persistence. To avoid this I used XML JPA mapping declarations (orm.xml)

A: 

The general problem of the JPA and GWT is that GWT itself doesn't support fancy JPA classes, so you just do simple POJO persistent entities DTO that implements the java.io.Serializable and have simple JPA resource annotations. You need to create the entity classes in the scope of the GWT client either have it under the yourproject.client package or add them with

source path="client"

source path="folderOfYourEntities"

in the GWT project's YouProject.gwt.xml file. This will include the entity objects in the GWT client so they can used them on client side of the RPC as well. The DAO must be on the server side and can contain anything that you container supports.

The problem you have now is that when compiling, GWT compiler saids that it desn't know what those imports for JPA annonations are in the entity DTO classes. That is why you need the javax.persistence class and source codes. The jpa-annotation-source.jar reference by Rustmyself works. It is just the javax.persistence compiled class files and source codes files plus a Persistence.gwt.xml. It is a simple GWT module for the javax.persistence package. If you know how to make your own GWT module, you should have problem making all this work. By the way, the official source for the JEE can be found on the glassfish dev site's build section wiki.glassfish.java.net

There are many other solutions that wrap your fancy PU entities to simple objects automatically using proxy or to lazy load them at run time. They work, but not optimal solutions. The best practice is to make things simple and robust from the start by having POJO JPA DTO entities on the GWT client context and full blown DAO on the server.

GWTPersistence Example
I have added an actual working example on how to make GWT and JPA work seamlessly. It is a NetBean project with source codes and deployment file. See GWTPersistence on NingZhang.info

Ning120