0

I have started creating my first project with GWT. In first lines of code, it worked normally and I had no need to GWT Compile every time to see a simple change in my browser.

For client changes, a save file was enough and for server a save and refresh server. But now it has stopped working like before.

For the smallest change like adding a "Window.alert("msg")" I need to reGWTCompile the whole project to see it! What could have issued this?

user1782634
  • 187
  • 1
  • 11

1 Answers1

3

Make sure you're running in DevMode (i.e. have ?gwt.codesvr= in your URL)

Thomas Broyer
  • 64,353
  • 7
  • 91
  • 164