简单servlet第二篇--load-on-startup的用法

最近写了一个公司网站,其中只有前端部分,还没有写java代码。在其中js部分有一些内容我觉的可以用配置项来代替,因为直接写到js代码里,有时候不太方便。

故想着使用java来实现一下,读取xml文件配置项的方式。

最简单的办法就是使用servlet, 即就是写一个servlet ,在容器已加载的时候就能读取到xml配置文件中的内容,然后我就写了一个非常非常简单的servlet, 


package com.xljy.servlet;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;

public class InitServlet extends HttpServlet {

	@Override
	public void init() throws ServletException {
		System.out.println("进入InitServlet1");
	}
}

就这个servlet, ,然后再在web.xml 配置上servlet



	edu_5ixl
	
	
	    InitServlet
	    com.xljy.servlet.InitServlet
	     InitServlet /InitServlet index.jsp 
  
 
  

 
  

这里没有写
1
 没有写这句,如果不访问InitServlet 的话 InitServlet 就不会执行的 ,故得写上 
1
得写上这句, 挡在tomcat一启动的时候,就会执行 InitServlet 

我查了一下,web.xml中load-on-startup的作用

 

贴一段英文原汁原味的解释如下:
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.

翻译过来的意思大致如下:
1)load-on-startup元素标记容器是否在启动的时候就加载这个servlet(实例化并调用其init()方法)。

2)它的值必须是一个整数,表示servlet应该被载入的顺序

2)当值为0或者大于0时,表示容器在应用启动时就加载并初始化这个servlet;

3)当值小于0或者没有指定时,则表示容器在该servlet被选择时才会去加载。

4)正数的值越小,该servlet的优先级越高,应用启动时就越先加载。

5)当值相同时,容器就会自己选择顺序来加载。

所以,x,中x的取值1,2,3,4,5代表的是优先级,而非启动延迟时间。

这里感谢一下作者,我也是摘抄。


后来我又写了一个InitServlet2 ,如下:

package com.xljy.servlet;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;

public class InitServlet2 extends HttpServlet {

	@Override
	public void init() throws ServletException {
		System.out.println("进入InitServlet2");
	}
}


web.xml 中 配置如下:



	edu_5ixl
	
	
	    InitServlet
	    com.xljy.servlet.InitServlet
	    1
	
	
	    InitServlet
	    /InitServlet
	
	
	
	    InitServlet2
	    com.xljy.servlet.InitServlet2
	    2
	
	
	    InitServlet2
	    /InitServlet2
	
	
	
	    index.jsp
	


其中Initservlet和InitServlet2 都设置了自启动,那么哪个先启动呢? load-on-startup 的值越小,优先级越高 ,所以是InitServlet先启动。 

这里仅此将此知识点记录一下。


不积跬步,无以至千里

不积小流,无以成江海




你可能感兴趣的:(java学习)