If I save variable in session scope, is it visible in application scope?

678 Views Asked by At

I did the following

getJspContext().setAttribute("authUser", user, PageContext.SESSION_SCOPE);` 

In my LoginServlet and the following

User currentUser = (User) getJspContext().getAttribute("authUser", PageContext.APPLICATION_SCOPE);

In the other servlet. But currentUser = null, Only when I changed APPLICATION_SCOPE to SESSION_SCOPE it started to work.

So, the question is, why application scope doesn't see the variable I set in session scope, because in my opinion when I create variable in session scope, it is automatically becomes visible in application scope?

1

There are 1 best solutions below

4
On BEST ANSWER

You are searching attribute in a specified scope only, See java doc:

Return the object associated with the name in the specified scope or null if not found.

To find in all scopes, use instead findAttribute("authUser")

Searches for the named attribute in page, request, session (if valid), and application scope(s) in order and returns the value associated or null.