The new element of Web. XML in Servlet3.0

Source: Internet
Author: User

Metadata-complete:

When the property is true, the Web app will not load the Web component of the annotation configuration (such as servlet, Filter, Listener)

When the property is False, the Web component of the annotation configuration (such as servlet, Filter, Listener) is loaded.

Note: If it is true and the annotations are configured in Web. XML, the program will error at compile time, just change this parameter to False.

In Servlet3.0 annotations, it is not possible to correspond to the boot order of the servlet. WORKAROUND: You must enable the order through the Web. XML configuration To resolve, that is, set the parameter to true;

Example: See Configuration header file (below)

<?xml version= "1.0" encoding= "UTF-8"?
<web-app xmlns:xsi= "http://www.w3.org/2001/ Xmlschema-instance "
 xmlns=" Http://xmlns.jcp.org/xml/ns/javaee "
 xsi:schemalocation="/http/ Xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd "
 id=" webapp_id "version= "3.1" metadata-complete= "false";
  <display-name>pfapp</display-name>
 <welcome-file-list>
  < Welcome-file>index.html</welcome-file>
  <welcome-file>index.htm</welcome-file
  <welcome-file>index.jsp</welcome-file>
  <welcome-file> Default.html</welcome-file>
  <welcome-file>default.htm</welcome-file>
  <welcome-file>default.jsp</welcome-file>
 </welcome-file-list>
</ Web-app>

The new element in Servlet3.0 for Web. XML

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.