簡體   English   中英

是 <load-on-startup> Java Web應用程序部署描述符中的servlet是可選的嗎?

[英]Is <load-on-startup> optional for a servlet in the Java Web application deployment descriptor?

元素<load-on-startup>可選用於Java Web應用程序部署描述符(WEB-INF / web.xml)中的<servlet>定義?

是...

例如, http//java.sun.com/xml/ns/j2ee/web-app_2_4.xsd

<xsd:element name="load-on-startup"
       type="j2ee:xsdIntegerType"
       minOccurs="0">
<xsd:annotation>
  <xsd:documentation>

    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.

  </xsd:documentation>
</xsd:annotation>
  </xsd:element>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM