웹 모듈 환영 파일 이름에서 / 사용 안함

이 규칙은 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>