Re: Eclipse setup, javax.validation missing and jsp syntax highlighting

2016-02-25 Thread sam jones
I just created a new workspace in Spring STS AFTER importing all my jars with a gradle build and it worked. Without the new workspace created, it did not work. On Saturday, November 13, 2010 at 7:55:39 AM UTC-5, Stephen Buergler wrote: > > I see in the RequestFactory example

Re: Eclipse setup, javax.validation missing and jsp syntax highlighting

2010-12-20 Thread -sowdri-
Thanks Steve! Indeed that solution works. As you rightly said, I did not use Maven for building the project :) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To

Re: Eclipse setup, javax.validation missing and jsp syntax highlighting

2010-11-30 Thread Steve Moyer
I'm assuming that neither of you are using Maven as this library is included at http://repo1.maven.org/maven2/javax/validation/validation-api/1.0.0.GA/, so you'll need to download it and manually add it to your classpath. Hope this helps! smoyer On Nov 19, 7:54 am, -sowdri- sow...@gmail.com

Re: Eclipse setup, javax.validation missing and jsp syntax highlighting

2010-11-19 Thread -sowdri-
Even I'm facing the same problem. FILE: /Expenses/src/com/google/gwt/sample/expenses/server/domain/ Employee.java /* these imports fails */ import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; ... I've been trying to make things work for a long time. Any help

Eclipse setup, javax.validation missing and jsp syntax highlighting

2010-11-13 Thread sixcorners
I see in the RequestFactory example (http://code.google.com/p/google- web-toolkit/source/browse/trunk/samples/expenses/src/main/java/com/ google/gwt/#gwt/sample/expenses/shared), the Entity has properties that have constraint annotations like javax.validation.constraints.Size. Unfortunately when I