context-param和init-param区别
简述不管是使用了什么技术的web应用都会有一个配置文件web.xml,这个文件中有很多可供配置的元素,其中context-param和init-param就是其中比较难以理解的元素。web.xml配置文件实例dispatcherServletorg.springframework.web.servlet.DispatcherServletcontextConfi
·
简述
不管是使用了什么技术的web应用都会有一个配置文件web.xml,这个文件中有很多可供配置的元素,其中context-param和init-param就是其中比较难以理解的元素。
web.xml配置文件实例
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:dispatcherServlet-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
Context-param(上下文参数),在这个元素中可以定义多个<param-name><param-value>组成的键值对,但是要注意这里定义的键值对作用于是application,而且在有些应用中会提前定义自己的键值对,所以可以通过这种方式配置某些技术,同时这里也可以自定义一些参数,然后在业务逻辑中使用。获取键值对的方式如下
ServletContextEvent .getServletContext().getInitParameter("urlrewrite");
<init-param>的作用范围则是当前对应的Servlet,只有对应的Servlet才能够调用到,有些提前定义的Servlet中也会判断是否有某些配置的键值对,如果有则根据配置的键值对处理逻辑,没有则根据默认的逻辑处理,同时也可以自定义键值对在后期自定义的Servlet当中使用。获取键值对的方式如下
this.getInitParameter("param1")
注意以上两者获取键值对的方式的区别,第一个必须获取ServletContext之后才能够获取,因为第一个的键值对属于整个应用,而第二个则是通过this获取,因为这里获取的键值对仅仅属于当前的Servlet。
更多推荐
已为社区贡献1条内容
所有评论(0)