美文网首页
JavaWeb项目web.xml详解

JavaWeb项目web.xml详解

作者: 暮秋moco | 来源:发表于2020-02-25 09:37 被阅读0次

1. web.xml的作用

3. <context-param>标签的作用

  1. 启动一个WEB项目的时候,容器(如:Tomcat)会去读它的配置文件web.xml.读两个节点: <listener></listener> 和 <context-param></context-param>

2.紧接着,容器创建一个ServletContext(上下文),这个WEB项目所有部分都将共享这个上下文.

3.容器将<context-param></context-param>转化为键值对,并交给ServletContext.

4.容器创建<listener></listener>中的类实例,即创建监听.

5.在监听中会有contextInitialized(ServletContextEvent args)初始化方法,在这个方法中获得ServletContext = ServletContextEvent.getServletContext();
context-param的值 = ServletContext.getInitParameter('context-param的键');

6.得到这个context-param的值之后,你就可以做一些操作了.注意,这个时候你的WEB项目还没有完全启动完成.这个动作会比所有的Servlet都要早.
换句话说,这个时候,你对<context-param>中的键值做的操作,将在你的WEB项目完全启动之前被执行.

7.举例.你可能想在项目启动之前就打开数据库.
那么这里就可以在<context-param>中设置数据库的连接方式,在监听类中初始化数据库的连接.

8.这个监听是自己写的一个类,除了初始化方法,它还有销毁方法.用于关闭应用前释放资源.比如说数据库连接的关闭.

如:

<!-- 加载spring的配置文件 -->
<context-param>
           <param-name>config</param-name>
           <param-value>classpath*:spring/*.xml</param-value>
</context-param>
<listener>
    <listener-class>pers.listeners.SpringServletContextLisener</listener-class>
</listener>

4. context-param和init-param区别

web.xml里面可以定义两种参数:

1.application范围内的参数,存放在servletcontext中,在web.xml中配置如下:
在servlet里面可以通过getServletContext().getInitParameter('config')得到

<context-param>
           <param-name>config</param-name>
           <param-value>applicationContext.xml</param-value>
</context-param>

2.servlet范围内的参数,只能在servlet的init()方法中取得,在web.xml中配置如下:
在servlet的init()方法中通过this.getInitParameter('param1')取得.

<servlet>
    <servlet-name>MainServlet</servlet-name>
    <servlet-class>com.wes.controller.MainServlet</servlet-class>
    <init-param>
       <param-name>param1</param-name>
       <param-value>avalible in servlet init()</param-value>
    </init-param>
    <load-on-startup>0</load-on-startup>
</servlet>

参考

https://blog.csdn.net/sinat_36277898/article/details/85392033

相关文章

网友评论

      本文标题:JavaWeb项目web.xml详解

      本文链接:https://www.haomeiwen.com/subject/gwkzqhtx.html