码迷,mamicode.com
首页 > 其他好文 > 详细

servlet-servletConfig

时间:2018-11-04 15:44:03      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:val   init   Servle   mini   -name   class   有一个   this   tps   

servletConfig相当于老板的秘书,只服务一个老板,一个老板也只有一个秘书!!!! 嘻嘻

 

 

在web.xml中给单独的servlet配置数据

<servlet>

<servlet-name>ServletConfigServlet</servlet-name>

<servlet-class>servlet.ServletConfigServlet</servlet-class>
 <init-param>
<param-name>config</param-name>配置方式
<param-value>utf-8</param-value>配置方式
</init-param>
</servlet>

 

 

/**
* ServletConfig对象学习:
* 问题:
* 如何获取在web.xml中给每个servlet单独配置的数据呢?
* 解决:
* 使用ServletConfig对象
* 使用:
* 获取ServletConfig对象
* 获取web.xml中的配置数据
*
*
*
*
* @author Administrator
*
*/
public class ServletConfigServlet extends HttpServlet {
@Override
protected void service(HttpServletRequest arg0, HttpServletResponse arg1)
throws ServletException, IOException {
//获取ServletConfig对象
ServletConfig sc=this.getServletConfig();
//获取web.xml中配置数据
String code=sc.getInitParameter("config");
System.out.println(code);

}
}

servlet-servletConfig

标签:val   init   Servle   mini   -name   class   有一个   this   tps   

原文地址:https://www.cnblogs.com/axu521/p/9903956.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!