GWT dev mode with pre-installed tomcat

2010-01-08 Thread Nuno
Hello everybody, I'm implementing gwt on a existing project. and i need to use dev mode with the already installed tomcat. Can anybody help me configure this? I'm using gwt 2.0 Att Bruno Bilescky -- Wants to learn Javascript? Read my blog / Quer aprender a programar? leia meu blog

Re: GWT dev mode with pre-installed tomcat

2010-01-08 Thread Chris Ramsdale
What specific issues are you running into? On Fri, Jan 8, 2010 at 8:21 AM, Nuno brun...@gmail.com wrote: Hello everybody, I'm implementing gwt on a existing project. and i need to use dev mode with the already installed tomcat. Can anybody help me configure this? I'm using gwt 2.0

Re: GWT dev mode with pre-installed tomcat

2010-01-08 Thread Sebastian
Hello, I use IntelliJ as IDE but basically what I do is to start the Tomcat as normal and to start the GWT class com.google.gwt.dev.DevMode with the following params. -noserver -gen /Users/hennebrueder/workspaces/default/bund-apfel/ target/bund-apfel-gen -war

Re: GWT dev mode with pre-installed tomcat

2010-01-08 Thread Martin D'Aloia
Create a new Run configuration in Eclipse with these parameters: Main class: com.google.gwt.dev.DevMode Arguments: -noserver -startupUrl http://localhost:8080/your_context/com.package.to.your.AppModule In Classpath tab: under User Entries add your source folder. On