javax.el.PropertyNotFoundException when second character of property name is a capital
问题 I have this unusual scenario: I have a registrationVO with few properties and getter setters for that. For example city or bCity with their getter methods getCity() and getBCity() In JSP i tried to display the value of these properties using scriplets, <%=registrationVO.getCity()%> and < %=registrationVO.getBCity()%> , It works fine. But i replaced the same with expression language, ${registrationVO.city} and ${registrationVO.bCity} i got an error saying property "bCity" not found in