<load-on-startup/>:立即载入,<load-on-startup>10</load-on-startup>10毫秒后载入,通过指定值,并且可以按一定的顺序载入。

解决方案 »

  1.   

    应该是表示载入的顺序,数值低的必须在数值高的前面载入。下面是英文的完整解释:
    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 ed with lower integers are loaded before servlets ed with higher integers. The container may choose the order of loading of servlets with the same load-on-start-up value.
      

  2.   

    是servlet的加载顺序!!! 数字越小代表加载的优先级越高。