<jsp:getProperty name="user" property="email" />
I have an user class with 3 instance variables: fname, lname, email. But the code above won't work unless I change my instance variables to exactly "firstName", "lastName", and "emailAddress" and changing the bean tag of course. All these fails when I tried (error example: no variable "fname" exist in the bean): fname, fName, firName, emailAddr, etc..
is there an exact requirement to the naming of variables?