이 규칙은 web.xml 파일에서 슬래시 문자(/) 또는 백슬래시 문자(\)로 시작하는 모든 웹 모듈 <welcome-file>을 플래그 지정합니다.
소스 스캐너에서 이 규칙에 대한 빠른 수정사항을 사용할 수 있습니다. 빠른 수정사항은 이름에서 / 또는 \를 제거합니다.
환영 파일 목록이 다음과 같다고 가정하면,|
<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> |
|
<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> |