I've seen that changing a source java file that contains GWT code(i.e. creating buttons, labels), gets reloaded automatically when I hit browser refresh.

I'm doing a multi-module maven project with these modules:

  • client
  • shared
  • server

but the GWT code reloading feature only works in a single-module project. Which config files tell GWT where to reload it's sources from? How do I configure this feature in a multi-module maven project?

Thanks

link|improve this question

Can you be specific about the problem that you're having? – Jason Terk Feb 22 '11 at 20:24
My setup is a bit complex to explain here, but basically I just need some tutorial or infos about how GWT reloads the code when I refresh the browser. Something like a under-the-hood GWT article/blog. – leadgy Feb 22 '11 at 20:29
I just found google.com/events/io/2010/sessions/… and I'm watching right now, but I'm not yet sure it contains what I look for – leadgy Feb 22 '11 at 20:30
If your application is fully loaded in development mode then all appropriate code will be updated with a browser refresh. Note that server-side code may or may note be appropriately updated when modified - it depends on how you are deploying the server side code. – Jason Terk Feb 22 '11 at 20:36
1  
It's client code that doesn't get reloaded. When I have multi-maven modules(I've started from the hupa GWT app as base), if I change something in a .ui.xml file, it gets reloaded but if I change something in a .java file, it doesn't. If I knew how GWT works internally, I'd be able to debug this. – leadgy Feb 22 '11 at 20:39
show 5 more comments
feedback

1 Answer

up vote 0 down vote accepted

GWT loads files (java, ui.xml, css, etc.) from the classpath. How to configure DevMode to automatically reload your changes depends on how you run it: GPE or mvn gwt:run.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.