How to run GWT in web mode?

I am using the Eclipse GWT plugin to run my GWT application. It always starts in "development mode". How can I run it in web mode? (Think Firefox doesn’t need the Firefox plugin?)

+5
source share
2 answers

Compile it and run

If you bind http: // .....? Gwt ... it will run in host mode

If you delete everything after the '?' he will work in web mode

+6
source

compile and provide tomcat with a link to the gwt military directory.

run tomcat. you can get a normal url.

0
source

All Articles