zoukankan      html  css  js  c++  java
  • ServletContext2

    ------------ContextServlet.java--------------节选--

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
      // TODO Auto-generated method stub
      request.setCharacterEncoding("GB2312");
      response.setContentType("text/html;charset=gb2312");
      PrintWriter out = response.getWriter();
      ServletContext context = getServletConfig().getServletContext();
      //获得工程相关信息
      out.println("获得了工程的相对路径:"+context.getRealPath("/")+"<br>");
      out.println("获取了Tomcat的信息: "+context.getServerInfo()+"<br>");
      out.println("获取了JNDI:"+context.getResource("/")+"<br>");
      out.println("获取了源程序的相对路径:"+context.getResourcePaths("/")+"<br>");
      //getInitParameter方法
      String date = context.getInitParameter("date");
      String myclass = context.getInitParameter("class");
      out.println("date is -- "+date+"<br>");
      out.println("class is -- "+myclass+"<br>");
      //集合方法
      Enumeration e = context.getInitParameterNames();
      while(e.hasMoreElements()){
       String pName=(String) e.nextElement();
       String pValue=context.getInitParameter(pName);
       out.println("<br><b>"+pName+"</b>&nbsp;");
       out.println("----- "+pValue+"<br>");
      }
     }

    -------------------web.xml----------------------

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
      <display-name>test4-03</display-name>
      <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
      </welcome-file-list>
      <context-param>
       <param-name>date</param-name>
       <param-value>200</param-value>
      </context-param>
      <context-param>
       <param-name>class</param-name>
       <param-value>102</param-value>
      </context-param>
      <servlet>
       <description>This is the description of my J2EE component</description>
       <display-name>This is the display name of my J2EE component</display-name>
       <servlet-name>ContextServlet</servlet-name>
       <servlet-class>com.ContextServlet</servlet-class>
       <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet-mapping>
       <servlet-name>ContextServlet</servlet-name>
       <url-pattern>/servlet/ContextServlet</url-pattern>
      </servlet-mapping>
    </web-app>

  • 相关阅读:
    【42.38%】【BZOJ 3196】二逼平衡树
    【7.89%】【BNUOJ 52303】Floyd-Warshall
    【37.38%】【codeforces 722C】Destroying Array
    【57.14%】【codeforces 722B】Verse Pattern
    【26.34%】【codeforces 722A】Broken Clock
    HNOI2008越狱(快速幂)
    HNOI2010弹飞绵羊
    JSOI2008最大数(线段树)
    ZJ2008树的统计(树链剖分)
    SDOI 2010 and SXOI 2014 地精部落 (递推)
  • 原文地址:https://www.cnblogs.com/daimazhang/p/5364994.html
Copyright © 2011-2022 走看看