Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Validating GWT components takes forever

Tags:

java

eclipse

gwt

Validating GWT components process in Eclipse takes ages, almost impossible to do productive work. I have selected from my Eclipse->Window->Preferences->Validators: selected Supend all validators still Eclipse validates GWT components which is painfully slow. How can I fix this? It's very hard when eclipse just validates the whole application every time I save.

like image 582
quarks Avatar asked Jul 09 '12 11:07

quarks


2 Answers

We had the same phenomenon. Upgrading to Eclipse Juno/4.2 fixed the problem for us.

Another possible solution is described here.

like image 186
Steffen Schäfer Avatar answered Oct 23 '22 23:10

Steffen Schäfer


I had the same problem and this solved the issue:

Right click project -> properties -> JavaScript -> Include Path

Then add an Exclude path to your compiled GWT files like this. You dont need to validate them:

enter image description here

like image 33
Jens Avatar answered Oct 23 '22 22:10

Jens