Well for Example If I have a JSP File that calls a Java class & that java class calls another java class, is there any way I could access the session object from the last java class without having to pass the request from the JSP file to every java class.
N.B.: the number of classes & methods are too huge to apply passing the request object in every class method.
> Well for Example If I have a JSP File that calls a
> Java class & that java class calls another java
> class, is there any way I could access the session
> object from the last java class without having to
> pass the request from the JSP file to every java
> class.
You should pass the specific attributes from the session.