8

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.

quarks
  • 33,478
  • 73
  • 290
  • 513
  • 2
    Are you sure that's even related? What are you seeing in the Progress View? – nitind Jul 09 '12 at 12:27
  • 1
    possible duplicate of [GWT Code Validation with Eclipse](http://stackoverflow.com/questions/11388560/gwt-code-validation-with-eclipse) – Ian Roberts Nov 20 '12 at 22:24

2 Answers2

2

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

Another possible solution is described here.

Community
  • 1
  • 1
Steffen Schäfer
  • 1,126
  • 9
  • 11
2

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

Jens
  • 1,599
  • 14
  • 33