Reputation: 4466
i have such a task and I would like some advices on how to do this. Maybe someone already done such a work or know some usefull articles. Where does *.gwt.xml files go, where does client / public / server / index.html file go, servlet mapping from web.xml, etc, etc. Thanks !
Upvotes: 1
Views: 102
Reputation: 2607
You should look into the Grails GWT Plugin and port your application over. For back-end I've used both the GWT-RPC way with Grails DTO Plugin or you can use your Controllers and make HTTP RequestFactory calls in your client and communicate via JSON.
Upvotes: 1