package com.cv.servlet.context.param;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.log4j.Logger;
/**
* @author Chandra Vardhan
*
*/
public class ContextParameterServlet extends HttpServlet {
private static final Logger LOGGER = Logger
.getLogger(ContextParameterServlet.class);
private static Map<String, String> initParams = new HashMap<String, String>();
int count = 0;
/**
* Constructor of the object.
*/
public ContextParameterServlet() {
super();
}
public void init() throws ServletException {
LOGGER.info("Entered into init(ServletConfig) of InitParameterServlet class... ");
// This is reading all the init Parameters at once...
Enumeration initParameterNames = getServletContext().getInitParameterNames();
while (initParameterNames.hasMoreElements()) {
String paramName = (String) initParameterNames.nextElement();
initParams.put(paramName, getServletContext().getInitParameter(paramName));
}
LOGGER.info("Params from init(ServletConfig) : " + initParams);
}
/**
* Destruction of the servlet. <br>
*/
public void destroy() {
super.destroy();
LOGGER.info("Entered into destroy() of InitParameterServlet class... ");
}
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
LOGGER.info("Entered into doGet(HttpServletRequest, HttpServletResponse) of InitParameterServlet class... ");
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
out.println("<HTML>");
out.println(" <HEAD><TITLE>A Servlet</TITLE></HEAD>");
out.println(" <BODY>");
String initParameterValue1 = getServletContext().getInitParameter(
"contextParam");
String initParameterValue2 = getServletContext().getInitParameter(
"contextParam2");
String initParameterValue3 = getServletContext().getInitParameter(
"contextParam3");
LOGGER.info("This is reading init Parameters one by one..." );
LOGGER.info("contextParam : " + initParameterValue1 );
LOGGER.info("contextParam2 : " + initParameterValue2 );
LOGGER.info("contextParam3 : " + initParameterValue3 );
out.print("This is reading init Parameters one by one..." + "<br>");
out.print("contextParam : " + initParameterValue1 + "<br>");
out.print("contextParam2 : " + initParameterValue2 + "<br>");
out.print("contextParam3 : " + initParameterValue3 + "<br>");
out.print("This is reading all the init Parameters at once..." + "<br>");
for (Map.Entry<String, String> initParamMap : initParams.entrySet()) {
out.print(initParamMap.getKey() + " : " + initParamMap.getValue()
+ "<br>");
LOGGER.info(initParamMap.getKey() + " : " + initParamMap.getValue());
}
out.println(" </BODY>");
out.println("</HTML>");
out.flush();
out.close();
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
} |
No comments:
Post a Comment