Bax
Bax

Reputation: 4466

Integrating existing gwt application in grails

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

Answers (1)

stan229
stan229

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

Related Questions