On May 31, 2:16 pm, Thomas Broyer <[email protected]> wrote:
> If you do not have server-side code in Java, then you can just start the
> DevMode in -noserver- mode and point it to your "Go" server,
> seehttp://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebu...
To accomplish this I use Maven's GWT plugin with the following config:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.2.0</version>
<configuration>
<logLevel>INFO</logLevel>
<noServer>true</noServer>
<!-- .. -->
</plugin>
After "mvn gwt:run" I get the Dev Mode Console but after clicking on
"Launch Default Browser" the browser popups with
http://127.0.0.1:8888/commander/index.html?gwt.codesvr=127.0.0.1:9997
Calling the GWT container page manually leads to
"GWT module 'commander' may need to be (re)compiled"
...no matter whether I call the GWT container page via file:/// or http://
Executing the result of "mvn gwt:compile" works fine. But that's the
production code that takes minutes to compile.
Any tips how I can use the -noserver with Maven or IntelliJ (I don't
use Eclipse)?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.