This is my jsp code that Iam using in my Spring Application.
<form:label path="username">Enter your user-name</form:label>
<form:input id="username" name="uName" path="" /><br>
<form:label path="username">Please enter your password</form:label>
<form:password id="password" name="password" path="" /><br>
<input type="submit" value="Submit" />
Can someone please explain me what is the use of label path attribute. What it does Exactly. Because when I cahnge this path value it is throwing me an error while displaying. Can someone please explain me what it is.?