웹 모듈을 서버에 배포하기 위한 설명자에 나열되어 있는 중복된 welcome 파일을 보고합니다.

예:



  <?xml version="1.0" encoding="UTF-8"?>
  <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
  <web-app>
    <welcome-file-list>
      <welcome-file>
        Welcome1.jsp
      </welcome-file>
      <welcome-file>
        /Welcome1.jsp // 오류: 중복된 welcome-file
      </welcome-file>
      <welcome-file>
        Welcome3.jsp
      </welcome-file>
    </welcome-file-list>
  </web-app>