session menagement in servlets explaion briefly?



session menagement in servlets explaion briefly?..

Answer / abhijit dutta

import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;


public class SessionSample extends HttpServlet {
public void doGet (HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException {


// Step 1: Get the Session object

boolean create = true;
HttpSession session = request.getSession(create);

// Step 2: Get the session data value


Integer ival = (Integer)
session.getAttribute ("sessiontest.counter");
if (ival == null) ival = new Integer (1);
else ival = new Integer (ival.intValue () +
1);
session.setAttribute ("sessiontest.counter",
ival);

// Step 3: Output the page

response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println("<html>");
out.println("<head><title>Session Tracking
Test</title></head>");
out.println("<body>");
out.println("<h1>Session Tracking Test</h1>");
out.println ("You have hit this page " + ival + "
times" + "<br>");
out.println ("Your " + request.getHeader("Cookie"));
out.println("</body></html>");
}
}

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Struts Interview Questions

what is mean by custom tag?

5 Answers   Wipro,


How many servlet controllers are used in a Struts Application?

0 Answers  


What are the core classes of struts?

0 Answers  


What is the purpose of plug-in tag in struct-config.xml?

0 Answers  


What are the steps involved in creating a strut application?

0 Answers  


How is the action mapping specified?

0 Answers  


What does action do in struts?

0 Answers  


What are the two scope types for formbeans?

0 Answers  


Hi frnds Ima facing problm with tomcat configuration.kindly can any one tell to me what is the mistake iam doing.i already configured tomcat as fallowing http://www.ibm.com/developerworks/opensource/library/os-eclipse-tomcat/ even though iam getting the PortNO .and changed with different no of Ports but no working kindly can any one tell me what is the mistake iam doing........?

1 Answers  


when connecting with the database,if database server is down,ho can we handle this exception in struts,how can we send error message to the user?

4 Answers   Wipro,


Explain the difference between plain-validator and field-validator in struts?

0 Answers  


What is interceptor struts2?

0 Answers  


Categories