I have developed one GWT project . I have created one JPA entity called Employee. I want that entity to be persisted to the database. My Employee is
located under com.mygwt.client.bean. Now my question is that are all the entities meant to be located at server side? When I tried to create under
the server side I got the exception saying Forgot to inherit the module for the Employee. Is there any other way for creating the entities in server side instead of creating the entity in client side? Please suggest the way I am doing right or not.
I have developed one GWT project . I have created one JPA entity called
Share
Put in the server side and then add an additional
<source path='..'/>to your .gwt.xml to tell GWT where the sources are.