java - Spring MVC - Eclipse Warning - Validation Message -
i tried looking answer, kept getting false positives since it's "validation message" warning. have jsp line
<a href="login">member home</a>
which maps
@requestmapping(value = "/login", method = requestmethod.get) public string login(modelmap model){ return "home"; }
this setup works intended spring security intercepting request, warning eclipse
webcontent/login not found.
the warning makes sense, since don't have file called login, missing step prevents warning.
i realize it's warning, , can suck up, avoid that, if leads bigger problems later.
using: spring 3.1.0 , spring security 3.1.2 on jboss 7.1
edit: more complete warning:
description resource path location type webcontent/login not found. index.jsp /rms/webcontent line 11 validation message
line 11 being html link code posted above.
by type "validation message" eclipse tells warning not coming "external" plugin eclipse (unless plugin reports wrong type). gut feeling tells me source 'jsp content validator' (eclipse or project preferences -> validation). unfortunately, can switched off/on , not configured.
Comments
Post a Comment