2016-03-04 72 views
0

是否有描述每個元素和每個子元素的部署描述符的完整文檔? 我真的找不到它。在哪裏可以找到部署描述符(web.xml)的完整文檔

P.S.我問,因爲我發現設置會話cookie的最大生存週期的方式加入

<session-config> 
    <session-timeout>525600</session-timeout> 
    <cookie-config> 
     <max-age>31536000</max-age> 
    </cookie-config> 
</session-config> 

到DD。但我找不到任何描述<cookie-config>元素的官方文檔。

回答

1

對於遵循servlet 3.0規範的標準Java EE部署描述符元素,可以使用Oracle的Weblogic 12c web.xml docs

此外,對於上述文檔中未提及的缺失子元素,我建議您查看web-common_3_0.xsd文件,其中是Servlet 3.0部署描述符的常用XML模式(...)依次由web.xml和web-fragment.xml Web應用程序的war文件使用。

事件儘管它會迫使你讀取XML,在這個文件中,你可以檢查所有元素,以及它們的子元素,可以在web.xml中部署描述符一起使用,例如, cookie-config

<xsd:element name="cookie-config" 
      type="javaee:cookie-configType" 
      minOccurs="0"> 
    <xsd:annotation> 
     <xsd:documentation> 

     The cookie-config element defines the configuration of the 
     session tracking cookies created by this web application. 

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

謝謝,我不知道XML Schema包含元素的英文說明。 –

相關問題