[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.webtools] JSP Validator Hates Spring's form:errors Tag
|
- From: jsg8pitt@xxxxxxxxx (Joe Gallo)
- Date: Tue, 30 Sep 2008 15:44:24 +0000 (UTC)
- Newsgroups: eclipse.webtools
- Organization: Eclipse
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
I was using Eclipse Ganymede 3.4.0, everything was fine, but now that I've
upgraded to 3.4.1 I'm getting extraneous errors in *most* of the JSPs in
my application.
The errors look like this:
- Syntax error on token "}", delete this token
- Syntax error on token "catch", Identifier expected
- Syntax error, insert "Finally" to complete TryStatement
All of them are at "line 0".
Of course, everything works fine at runtime. I've deleted my entire
Eclipse installation, and reinstalled it from scratch. Deleted my entire
workspace, and rebuilt it from scratch. Of course, the problems remain.
Oddly enough, I've tracked it down to a single custom tag, Spring's
"form:errors" tag. If I have the tag as self closing in a file
(<form:errors ... />), then that file gives me the errors. BUT, if I
change it to be a proper open/closing tag (which shouldn't be necessary),
then Eclipse suddenly is okay with things...
Any bright ideas? My best bet at this point is just to fall back to
Notepad and javac (or maybe just downgrade back to 3.4.0).
Joe