zoukankan      html  css  js  c++  java
  • ServletContext1

    ---------------ConfigServlet.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();
      ServletConfig config = getServletConfig();
      //getInitParameter方法
      String username = config.getInitParameter("username");
      String password = config.getInitParameter("password");
      out.print("username--"+username);
      out.print("password--"+password);
      //集合方法
      Enumeration<?> e = config.getInitParameterNames();
      while(e.hasMoreElements()){
       String pusername=(String) e.nextElement();
       String ppassword = config.getInitParameter(pusername);
       out.print("<br/><b>"+pusername+"</b>&nbsp;;&nbsp;");
       out.print("------"+ppassword);
      }
      out.close();
     }

    ----------------------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>ServletConfig</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>
      <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>ConfigServlet</servlet-name>
        <servlet-class>com.ConfigServlet</servlet-class>
        <init-param>
         <param-name>username</param-name>
         <param-value>jspuser</param-value>
        </init-param>
        <init-param>
         <param-name>password</param-name>
         <param-value>123456</param-value>
        </init-param>
      </servlet>
      <servlet-mapping>
       <servlet-name>ConfigServlet</servlet-name>
       <url-pattern>/servlet/ConfigServlet</url-pattern>
      </servlet-mapping>
    </web-app>

  • 相关阅读:
    js获取上传图片真实的尺寸大小和存储大小
    java中Class.getResource用法(用于配置文件的读取)
    Spring Boot Application 事件和监听器
    docker打包centos增加中文支持
    安装polyglot出错
    docker内程序如何读取dockerfile和compose.yml中设置的环境变量
    Docker 构建网络服务后本机不能访问
    docker 错误:Error response from daemon: cannot stop container: connect: connection refused": unknown
    Mac上把python源文件编译成so文件
    Mac下更改Python pip的源
  • 原文地址:https://www.cnblogs.com/daimazhang/p/5364988.html
Copyright © 2011-2022 走看看