Is it posible to use Gilead for a GWT app and Glassfish 3.1 together? I\'ve tried this in a servlet: @PersistenceUnit
From the Gilead official site: Note that you still have to properly initialize PersistentBeanManager with
I\'m experiencing some problems with GWT and Gilead/Hibernate I did my code according to the tutorial but it fails with
Can someone please provide me an example of GWT + JPA + Gilead, I can\'t seem to find anything on Google with this topic.
i am wondering how i would be able to annotate an interface @Entity @Table(name = \"FOLDER_TABLE\") public class Folder implements Serializable, Hierarchy {
I\'m using JPA (with Hibernate) and Gilead in a GWT project. On the server side I have this method and I\'m calling this method twice with the same \"campaign\". On the second call it throws a null po
I\'m using Gilead to persist my entities in my GWT project, im using hibernate annotations aswell. my problem is on my onetomany association.this is my User class that holds a reference to a list of F
My web app is using GWT 2.0.2, GXT 2.1.1, Hibernate 3.5-CR1, Javassist 3.11.0 and Gilead 1.3.1 (latest from SVN).
I\'ve got a simple pojo named \"Parent\" which contains a collection of object \"Child\". In hibernate/jpa, it\'s simply a one-to-many association, children do not know their parent: these Child obje
I am writing a GWT application, using Hibernate at the server side. Right now, I am entirely confused about the correct way to transfer my objects to the client side of the GWT application in the leas