Servlet Custom Cookie Project

Click here to download eclipse supported ZIP file




 

    
package com.cv.servlet.cookie;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.log4j.Logger;
/**
 * Servlet implementation class CustomCookie
 
 @author Chandra Vardhan
 
 */
public class CustomCookie extends HttpServlet {
  private static final Logger LOGGER = Logger
      .getLogger(CustomCookie.class);

  /**
   * Constructor of the object.
   */
  public CustomCookie() {
    super();
  }

  /**
   * Destruction of the servlet. <br>
   */
  public void destroy() {
    super.destroy()// Just puts "destroy" string in log
    // Put your code here
  }

  /**
   * The doGet method of the servlet. <br>
   *
   * This method is called when a form has its tag value method equals to get.
   
   @param request the request send by the client to the server
   @param response the response send by the server to the client
   @throws ServletException if an error occurred
   @throws IOException if an error occurred
   */
  public void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    LOGGER.info("LOGGER : CustomCookie doGet(HttpServletRequest,HttpServletResponse)");
    doPost(request, response);
  }

  /**
   * The doPost method of the servlet. <br>
   *
   * This method is called when a form has its tag value method equals to post.
   
   @param request the request send by the client to the server
   @param response the response send by the server to the client
   @throws ServletException if an error occurred
   @throws IOException if an error occurred
   */
  public void doPost(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    LOGGER.info("LOGGER : CustomCookie doPost(HttpServletRequest,HttpServletResponse)");
    response.setContentType("text/html");
    PrintWriter out=response.getWriter();
    out.println("<center><h1><font color='red'>Hello Client..,</font></h1></center>");
    String name=request.getParameter("userName");
    LOGGER.info("LOGGER : Value of the parameter userName is : : " +name);
    Cookie cookie=new Cookie("username",name);
    cookie.setMaxAge(20*60);
    response.addCookie(cookie);
    
    out.println("<h1>cookie is set<h1>");
    //RequestDispatcher dispatcher = request.getRequestDispatcher("/CustomCookie2");
    RequestDispatcher dispatcher = request.getRequestDispatcher("result.jsp");
    dispatcher.forward(request, response);
  }

  /**
   * Initialization of the servlet. <br>
   *
   @throws ServletException if an error occurs
   */
  public void init() throws ServletException {
    // Put your code here
  }

}


 

    
package com.cv.servlet.cookie;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.log4j.Logger;
/**
 * Servlet implementation class CustomCookie2
 
 @author Chandra Vardhan
 
 */
public class CustomCookie2 extends HttpServlet {
  private static final Logger LOGGER = Logger
      .getLogger(CustomCookie2.class);

  /**
   * Constructor of the object.
   */
  public CustomCookie2() {
    super();
  }

  /**
   * Destruction of the servlet. <br>
   */
  public void destroy() {
    super.destroy()// Just puts "destroy" string in log
    // Put your code here
  }

  /**
   * The doGet method of the servlet. <br>
   
   * This method is called when a form has its tag value method equals to get.
   
   @param request
   *            the request send by the client to the server
   @param response
   *            the response send by the server to the client
   @throws ServletException
   *             if an error occurred
   @throws IOException
   *             if an error occurred
   */
  public void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    LOGGER.info("LOGGER : CustomCookie2 doGet(HttpServletRequest,HttpServletResponse)");
    
    doPost(request, response);
  }

  /**
   * The doPost method of the servlet. <br>
   
   * This method is called when a form has its tag value method equals to
   * post.
   
   @param request
   *            the request send by the client to the server
   @param response
   *            the response send by the server to the client
   @throws ServletException
   *             if an error occurred
   @throws IOException
   *             if an error occurred
   */
  public void doPost(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    LOGGER.info("LOGGER : CustomCookie doPost(HttpServletRequest,HttpServletResponse)");
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    Cookie[] cookies = request.getCookies();
    if (cookies != null) {
      for (int i = 0; i < cookies.length; i++) {
        Cookie cookie = cookies[i];
        LOGGER.info("LOGGER : Custom cookie value is : : " +cookie.getName());
        if (cookie.getName().equals("username")) {
          String username = cookie.getValue();
          out.println("<br><br><h1 align='center'>Hello :  " + username + "</h1>");
          break;
        }
      }
    }
  }

  /**
   * Initialization of the servlet. <br>
   
   @throws ServletException
   *             if an error occurs
   */
  public void init() throws ServletException {
    // Put your code here
  }

}



<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'result.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
</head>
<body>
<br>
<br>
<form action="CustomCookie" method="post" id='test'>
<fieldset>
<legend> Welcome to the Custom cookie project... Page 1</legend>
<table align="center">
<tr>
<td><label>Enter Name : </label><input type="text"
name="userName" /></td>
</tr>
<tr>
<td align="right"><input type="submit" value="submit" /></td>
</tr>
</table>
</fieldset>
</form>
</body>
</html>



<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'result.jsp' starting page</title>
    
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
</head>
  <body>
   <br><br>
<fieldset>
<legend>Wow... Welcome to the Custom cookie project... Page 2</legend>
<table align="center">
<tr>
<td> <a href="CustomCookie2">Click here to visit next page...</a></td>
</tr>
</table>
</fieldset>
  </body>
</html>



#By default enabling Console appender
# Root logger option
log4j.rootLogger=INFO, stdout

# Redirect log messages to console
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%-5p [%c]:%L -->> %m%n

# Redirect log messages to a log file
#log4j.appender.file=org.apache.log4j.RollingFileAppender
#log4j.appender.file.File=C:\\servlet-application.log
#log4j.appender.file.MaxFileSize=5MB
#log4j.appender.file.MaxBackupIndex=10
#log4j.appender.file.layout=org.apache.log4j.PatternLayout
#log4j.appender.file.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n




<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>ServletCustomCookieProject</artifactId> <version>1.0</version> <packaging>war</packaging> <properties> <log4j.version>1.2.16</log4j.version> <java.version>1.8</java.version> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-war-plugin</artifactId> <version>2.6</version> <configuration> <warSourceDirectory>WebContent</warSourceDirectory> <failOnMissingWebXml>false</failOnMissingWebXml> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>3.0-alpha-1</version> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.1</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> <version>1.1.2</version> </dependency> </dependencies> <groupId>com.cv.servlet.filter.response</groupId> </project>




 
<?xml version="1.0" encoding="UTF-8"?> 
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1"> <servlet> <servlet-name>CustomCookie</servlet-name> <servlet-class>com.cv.servlet.cookie.CustomCookie</servlet-class> </servlet> <servlet> <servlet-name>CustomCookie2</servlet-name> <servlet-class>com.cv.servlet.cookie.CustomCookie2</servlet-class> </servlet> <servlet-mapping> <servlet-name>CustomCookie</servlet-name> <url-pattern>/CustomCookie</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>CustomCookie2</servlet-name> <url-pattern>/CustomCookie2</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>first.jsp</welcome-file> </welcome-file-list> </web-app>


No comments:

Post a Comment