Answer Posted / usha
cookie is small piece of data set by the server on the
client ,for session tracking. When the server sets the
cookie as part of the response,the client will send the
cookie back to the server when it sends the next request.
Cookie is class in http package.Create Cookie object and
send it as part of response using
response.addCookie(cookie object)
can access the cookie using
request.getCookie();
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the servletconfig object?
What are the uses of servlets?
What is a servlet?
When jsessionid is created?
Explain the servlet context.
Explain the war file?
How to get the current httpsession object?
What mechanisms are used by a Servlet Container to maintain session information?
What is the use of welcome-file-list?
What are the differences between forward() method and sendredirect() methods?
How to get the IP address of client in servlet?
Explain the difference between generic servlet and http servlet?
When using servlets to build the HTML, you build a DOCTYPE line, why do you do that?
Are Servlets Thread Safe? How to achieve thread safety in servlets?
Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!