Bon, aprés avoir consulté les spécifications Servlet 1.3 ( c'est ce que j'aurai du commencer par faire), voici ce qui est écrite:
<!ELEMENT listener-class (#PCDATA)>
<!--
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
DEPLOYMENT DESCRIPTOR
102
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.
Used in: servlet
-->
Donc, dès que le tag est présent, init est appelé (car la classe est instanciée), le nombre, s'il est present, precise un ordre...
Message édité par bartleby le 07-10-2003 à 14:52:19