关于web.xml中的load-on-startup

2010-01-25

于web.xml中的load-on-startup

文章分:Java

servlet的配置当中,<load-on-startup>3</load-on-startup>的含是:
标记容器是否在启候就加载这servlet。
值为0或者大于0,表示容器在用启动时就加载这servlet;
当是一个
或者没有指定指示容器在servlet被选择时才加
正数的越小,启动该servlet越高。

Servlet   specification:
        The   load-on-startup   element   indicates   that   this   servlet   should   be   loaded   (instantiated   and   have   its   init()   called)   on   the   startup   of   the   web   application.   The   optional   contents   of   these   element   must   be   an   integer   indicating   the   order   in   which   the   servlet   should   be   loaded.   If   the   value   is   a   negative   integer,   or   the   element   is   not   present,   the   container   is   free   to   load   the   servlet   whenever   it   chooses.     If   the   value   is   a   positive   integer   or   0,   the   container   must   load   and   initialize   the   servlet   as   the   application   is   deployed.   The   container   must   guarantee   that   servlets   marked   with   lower   integers   are   loaded   before   servlets   marked   with   higher   integers.   The   container   may   choose   the   order   of   loading   of   servlets   with   the   same   load-on-start-up   value.

一个定器,在目启动时置:
<servlet>
 <servlet-name>timerServlet</servlet-name>
 <servlet-class>lee.TimerServlet</servlet-class>
 <!-- 配置
用启动时Servlet -->
 <load-on-startup>0</load-on-startup>
</servlet>

 

你可能感兴趣的:(java,编程,servlet,Servlets,Integer,application)