zoukankan      html  css  js  c++  java
  • ServletConfig笔记

    package com.hailu;
    
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.IOException;
    import java.util.Enumeration;
    
    /**
     *
     * Servletconfig
     *      作用:
     *          方便每一个servlet获取自己单独的属性配置
     *      特点:
     *          1、每一个servlet单独拥有一个servletConfig对象
     *      使用:
     *          获取对象
     *          ServletConfig config = this.getServletConfig();
     *          获取值
     *          config.getInitParameter("china");
     *          获取所有的key值
     *          config.getInitParameterNames();
     */
    public class ServletConfigServlet extends HttpServlet {
        protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            this.doGet(request,response);
        }
    
        protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            //获取对象
            ServletConfig config = this.getServletConfig();
            String value = config.getInitParameter("china");
            System.out.println(value);
            //获取所有的key
            Enumeration<String> initParameterNames = config.getInitParameterNames();
            while (initParameterNames.hasMoreElements()){
                String key = initParameterNames.nextElement();
                String value2 = config.getInitParameter(key);
                System.out.println(key+"----"+value2);
            }
        }
    }
  • 相关阅读:
    java TopK算法
    夫妻过河问题
    Java中数据存储分配
    STM32与ARM代码执行过程
    C中gets()函数与scanf()函数说明
    MRTG开源监控安装手册
    mysql笔记
    windows调用ubuntu下的sublimeText2环境搭建
    linux性能优化
    测试那些事儿—软测必备的Linux知识(一)
  • 原文地址:https://www.cnblogs.com/yanghailu/p/12797874.html
Copyright © 2011-2022 走看看