I have recently started using Tomcat. I have been looking into the servlet code generated from a JSP.
For a <jsp:getProperty> action, a call to is made in the generated servlet. If I have attributes with the same name in, say, page as well as request scopes and I want to get the request-scoped attribute's value, won't return an incorrect result, as looks for the attribute in page scope first?