There is no direct method offered by servlet API to delete a cookie on server side. This is how you can go about doing it. also read: Java EE Tutorials Servlets Interview Questions New Features in Servlets 3.0 Asynchronous Servlets in Servlets 3 Loop through the cookies in the request object to locate the one …
Servlets
Servlet Life Cycle
Before start writing the servlet, it is important to know the life cylce of every servlet instance created. Read What is Servlet? tips to know about the servlet basics. also read: Java EE Tutorials Servlets Interview Questions New Features in Servlets 3.0 Asynchronous Servlets in Servlets 3 Servlet Life Cycle Methods The following are the …
New Features in Servlet 3.0
Servlet 3.0 The next version for servlet technology is Servlet 3.0, which is planned to be released with JEE 6.0in the last quarter of 2008. After the release of servlet 2.5 in spetember 2005, this is the new version with many new features included. Servlet 2.5 is released with JEE 5.0. Servlet 3.0 is maintained …
What is servlet?
Java Servlets Java Servlet is the serverside Java programming language. We can say it as serverside applet. How applet is used for writing the client side code, servlet is used for writing the serverside programming language. Servlet programming is first created by Sun Microsystems in June 1997. The latest version is Servlet2.5 which is released …