有关ServletConfig与ServletContext的访问
一般来说,对于整个应用的配置,为了不使用"硬编码",应该使用ServletContext对象。
而如果只有一个特定的Servlet需要设定的参数,其他Servlet不能访问,那么一般要使用ServletConfig();
PS: 在使用ServletConfig对象的时候,在init()方法中,一定要用super类初始化ServletConfig对象。
public void init(ServletConfig config) throws ServletException { super.init(config); //TODO }
下面来逐个讨论:
一、ServletContext对象
<context-param>元素:设定Context起始参数
在web.xml中,您可以利用<context-param>元素来定义Context起始参数,它包含两个子元素:
n <param-name>:定义Context起始参数名称
n <param-value>:定义Context起始参数值
以下是<context-param>元素的使用范例,在本例中笔者定义了两个Context起始参数:
n driver_type:Web应用程序欲使用的JDBC驱动程序名称
n url:目标数据库位置
<web-app> <context-param> <param-name>driver_type</param-name> <param-value>oracle.jdbc.driver.OracleDriver</param-value> </context-param> <context-param> <param-name>url</param-name> <param-value>jdbc:oracle:thin:@IP:1521:SID</param-value> </context-param> </web-app>
有两种方式存取Context起始参数的方式:
表1 在ServletContext接口中用来存取Context起始参数的方法
方法名称 |
回传类型 |
用 途 |
getInitParameter() |
String |
取得某个Context起始参数值 |
getInitParameterNames() |
java.util.Enumeration |
取得所有Context起始参数 |
1. 先调用getServletConfig()方法取得ServletConfig对象,再利用ServletConfig接口定义的getServletContext()方法取得ServletContext对象。
ServletConfig config = getServletConfig(); ServletContext context = config.getServletContext();
String driver_type = context.getInitParameter("drvier_type"); String url=context.getInitParameter("url");
2. 直接调用getServletContext()方法取得ServletContext对象。
ServletContext context = getServletContext(); //获得配置的参数 String driver_type = context.getInitParameter("drvier_type"); String url=context.getInitParameter("url"); //获得当前WebApp的路径 String path=context.getRealPath("/");
二, ServletConfig对象
<init-param>元素:设定init起始参数
在web.xml中,您可以利用<init-param>元素来定义Config起始参数,它包含两个子元素:
n <init-name>:定义Config起始参数名称
n <init-value>:定义Config起始参数值
以下是<init-param>元素的使用范例,在本例中笔者定义了两个Config起始参数:
n driver_type:Web应用程序欲使用的JDBC驱动程序名称
n url:目标数据库位置
<web-app> <servlet> <servlet-name>testServlet</servlet-name> <servlet-class>com.simon.test.servlet.initparam.testServlet</servlet-class> <init-param> <param-name>driver_type</param-name> <param-value>oracle.jdbc.driver.OracleDriver</param-value> </init-param> <init-param> <param-name>url</param-name> <param-value>jdbc:oracle:thin:@IP:1521:SID</param-value> </init-param> <servlet-mapping> <servlet-name>testServlet</servlet-name> <url-pattern>/testServlet</url-pattern> </servlet-mapping> </web-app>
在init()方法中,应该:
public void init(ServletConfig config) throws ServletException { //必须要继承super类的init()方法 super.init(config); String filename=getServletConfig().getInitParameter("config-file"); //TODO }
以上这篇有关ServletConfig与ServletContext的访问就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
Java中IdentityHashMap与HashMap区别详解
这篇文章主要介绍了Java中IdentityHashMap与HashMap区别详解,很多人不晓得IdentityHashMap的存在,其中不乏工作很多年的Java开发者,他们看到就说是第三方jar包,实际上它是Jdk源码自带的集合类,需要的朋友可以参考下2023-11-11Spring Cloud Admin健康检查 邮件、钉钉群通知的实现
这篇文章主要介绍了Spring Cloud Admin健康检查 邮件、钉钉群通知的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-08-08springboot如何使用assembly打包项目和启动脚本
这篇文章主要介绍了springboot如何使用assembly打包项目和启动脚本问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2023-06-06vue+springboot+shiro+jwt实现登录功能
这篇文章主要介绍了vue+springboot+shiro+jwt实现登录功能,本文通过示例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2022-04-04Spring中的ImportBeanDefinitionRegistrar接口详解
这篇文章主要介绍了Spring中的ImportBeanDefinitionRegistrar接口详解,ImportBeanDefinitionRegistrar接口是也是spring的扩展点之一,它可以支持我们自己写的代码封装成BeanDefinition对象,注册到Spring容器中,功能类似于注解@Service @Component,需要的朋友可以参考下2023-09-09
最新评论