Does somebody already have some experience embedding gwt in other client pages except the standard html file?
I want to use gwt as front end and grails as backend. Communication should be handled over rest json interface so that is loosely coupled.
How do i structure my project at best? Should I create 2 independend projects or should I stick them together?
At the beginning I had some problems with debugging my gwt application as it was part of the grails project. Now I copied the compiled js script to my webapp folder and included it in a grails page. Debugging gwt in noserver mode worked ok. The problem is , how do I solve my deployment later at best as I dont want to copy my js everytime by hand? Already tried the grails gwt plugin but its difficult to debug the gwt application and I even do not want to use the service stuff provided with the plugin.
I thought its a good idea to have 2 maven modules on for grails and one for gwt. Later 2 war files(one grails, one gwt) will deployed on Tomcat, so I also can change gwt client stuff without deploying grails again. How do i manage the brige from grails to gwt best? Just call the standard html in a div from grails page?
I am using maven for building my project.
Thanks for all your help