Toto pravidlo značí libovolný webový modul
<welcome-file>
který začíná znakem dopředného lomítka (/) nebo znakem zpětného lomítka (\) v souboru web.xml .
Automatická oprava odstraní z názvu znak / nebo \.
Je dán následující seznam úvodních souborů:
< span class="Code"> < 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>
Automatická oprava aktualizuje čtyři položky kódu na:
< span class="Code"> < 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>