what is use of session tracking ?with example?
Answer Posted / sivasubramanian.k
Session Tracking is one of the most powerful features of
Servlets and JSP. Basically, the servlet engine takes care
of using Cookies in the right way to preserve state across
successive requests by the same user. Your servlet just
needs to call a single method (getSession) and it has
access to a persistent hashtable of data that's unique to
the current user
public void doPost(HttpServletRequest request,
HttpServletResponse response){
...
//lets take the session obj
HttpSession session = request.getSession(true);
//now let us take the user name assosiated with this session
String currUserLogin = (String) session.getAttribute
("currentUserLogin")
...
//now we do the work according to the user name
doSomeWork(currUserLogin);
...
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is busy spin, and why should you use it?
Does java list allow null?
What is a stringbuilder?
Class c implements interface I containing method m1 and m2 declarations. Class c has provided implementation for method m2. Can I create an object of class c?
What are the differences between Java 1.0 and Java 2.0?
Can a constructor be protected?
Why do we need wrapper classes?
What is java beans?
Why we go for collections in java?
What is a function easy definition?
What modifiers may be used with an inner class that is a member of an outer class in java programming?
What is api data?
What are implicit objects in java?
Why do we need data serialization?
Differentiate jar and war files?