metadata-complete:
当属性为true时,该Web应用将不会加载注解配置的Web组件(如Servlet、Filter、Listener)
当属性为false时,将加载注解配置的Web组件(如Servlet、Filter、Listener).
注意:如果在为true时,且在Web.xml中配置了注解,程序在编译时会报错,只需变更此参数为false即可。
在Servlet3.0的注解中,无法对应Servlet的启动顺序问题。解决方法:必须要启用顺序的通过web.xml配置解决,即设定参数为true;
例:参看配置头文件(如下)
<?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>