I found the following in a
Struts book that shall remain nameless to protect the guilty:
Similarly, any variables that are defined with a JSP declaration are local to the service( ) method:
<%! String test = "test value"; %>
This doesn't look right to me, don't variables declared in declarations become instance variables?
So what scope would they fall into?
page
request
session
application