Last Time we learned how to configure a hibernate+ spring+ GWT application. Now we will continue explaining how I built this application. First, we'll start with the Beans. For this example we will define one bean called Regions and an interface called Bean . Region will be the pojo class that contains the mapping for HR schema regions table The @Entity annotation is used to mark this class as an Entity bean. To use this annotation the class must have at least a package scope no-argument constructor. The @Table annotation is used to specify the table to persist the data. The name attribute refers to the table name. If @Table annotation is not specified then Hibernate will by default use the class name as the table name. The @Id annotation is used to specify the identifier property of the entity bean. The placement of the @Id annotation determines the default access strategy that Hibernate will use f...
Sun Certified Java Programmer