Running in SuperDevMode
gwt, gwt-super-dev-mode, java, maven
Solution
The idea when running SuperDevMode is:
- Run mvn gwt:run-codeserver
- Run the app web container, Tomcat/Wildfly or GAE (in GAE its just mvn appengine:devserver)
The first one, runs the GWT codeserver responsible in compiling the app from within the bookmarklet. The second, is to run the web container, because the app is already compiled, so it can run from within the web container directly
Problem
I tried `SuperDevMode` however when the URL: `http://localhost:9876/` is accessed and `Dev Mode On` is clicked, I'm getting this: ``` Can't find any GWT Modules on this page. ``` What could I be missing? I already did ``` $mvn gwt:compile $mvn gwt:run-codeserver ``` I have these versions in the POM: ``` <gwt.version>2.5.0</gwt.version> <gwt.maven.version>2.5.0</gwt.maven.version> ``` Do I need to update the GWT version or the GWT Maven version? Or what I missing?