Reputation: 2202
Is it possible to run GWT in hosted mode under Tomcat, not Jetty in Eclipse? I am going to integrate GWT widgets into spring app, so it make requests to spring controllers. But developing, spring is ran on one server, GWT on another... So I can't make direct requests to spring controllers, and I am tired of doing monkey work, writing servlets under jetty which make requests to spring controllers under tomcat...
Upvotes: 1
Views: 3113
Reputation: 21280
You can use Tomcat instead of Jetty. You should start devmode with -noServer flag.. Here is more explanation from gwt web site
Upvotes: 3