Reputation: 4540
How to create and run GWT web project in eclipse with tomcat or another app-server?
I created a Gwt Project and when i run or debug it, eclise did use GWT hosted mode server. I can not find and configuration in project properties to select tomcat or another server for the project/
Regards
Upvotes: 1
Views: 1329
Reputation: 16152
In the GWT Run/Debug configuration of the project you want to run/debug, tab Main, deselect the "Run built-in server" option. After that, it's your responsibility to generate the html/js/images of the GWT module you want to run, and place them somewhere where Tomcat or JBoss can see them. That usually means deploying a war at least.
Upvotes: 1