Noor
Noor

Reputation: 20178

GWT Refresh Compile Cycle

According to what I have read concerning gwt, whenever we change the java code and reload the browser, the change is reflected. This is true for client side but not true for localhost serverside.

Does somebody know how to refresh the server side as well on browser refresh for gwt or is it not possible??

Upvotes: 1

Views: 453

Answers (3)

Frederic Conrotte
Frederic Conrotte

Reputation: 744

If your run GWT in Development mode within Eclipse, with a Spring backend Eclipse is usually clever enough to hot deploy server-side class changes, but not all of them.

Upvotes: 0

Carlos Tasada
Carlos Tasada

Reputation: 4444

If you're executing your GWT webapp from Eclipse. You only need to go to the "Development Mode" tab and use the "Reload Web Server" option.

Upvotes: 2

Yusuf K.
Yusuf K.

Reputation: 4260

You can use hot deploy with Eclipse, Netbeans, IDEA etc. But for this usage you must use debug mode. In addition, IDE loses its state because of many changes so debug mode must be restarted.

I think there is no way to refresh changes and I think keyword is hot deploy

Upvotes: 1

Related Questions