On 9 nov, 15:55, Frank Bølviken <[email protected]> wrote: > Hi, > > thanx for your answer, and I seems to have gotten a bit further. > I now struggle with devmode, and making changes to the code live. > I change the " final Label label = new Label ( "Hello world1" );" to > final Label label = new Label ( "Changed label" ); > When I hit F5, the code should be replaced live, but I have to do a > gwt compile, before the change is made. > How can i fix this? Are there any real guids on all of this which I > can read? > I mean from creating project in maven, importing to eclipse, creating > run configurations etc? There are so much to figure out.. would > be really helpful if anyone made a thorough guide on this.
If you want to use the Google Plugin for Eclipse to run DevMode (rather than "mvn gwt:run") then have a look at http://code.google.com/eclipse/docs/faq.html#gwt_with_maven We use a special "devmode" profile in our (multi-module) project so that "mvn package -Pdevmode" actually means "mvn war:exploded - Dmaven.test.skip=true -Dgwt.compiler.skip=true" on the web app module, to speed things up (don't compile and run tests, don't compile client code to JS, just setup the webapp as an exploded war (suitable to be used as the "-war" folder of DevMode), with its dependencies in WEB- INF/lib). -- 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.
