Importing class (not bean) in jsp page

Newbie Member
12Jul2011,13:45   #1
tushicomeng's Avatar
I am importing a class using the command:
<%@ page import="user.UserLoggedIn" %>

I am able to work on the methods but my query is:
Quote:
If I have static variables inside it, do they retain the value throughout the whole session or even after closing the session?
I just want to store these variables throughout the session and then reset them

In a bean, I can use scope="session"
Is there any similar way to do it in classes?