java - When should a GWT widgetSet need to be recompiled? -
in gwt hello world example, if compile , run app, widgetset gets compiled has never been done.
if change label in hello world app "hello world 2", should widget set need recompiled?
i using maven , have stub widgetset defined in project inherits couple of other widgetsets. using vaadin think generic gwt issue.
thanks.
changing contents of label trigger full recompile of gwt application. gwt compiler monolithic - requires full view of every part of source because performs many optimizations on entirety of application. because of change in part of application require full compile.
developer mode allow see changes more recompiling , redeploying application.
Comments
Post a Comment