Ta reguła powoduje oznaczenie dowolnego modułu WWW
<welcome-file>
który rozpoczyna się od znaku ukośnika (/) lub ukośnika odwrotnego (\) w pliku web.xml .
Automatyczna poprawka usunie / lub \ z nazwy.
Podana jest następująca lista plików powitania:
< span class="Code"> < lista-plików-powitania>
<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>
Automatyczna poprawka zaktualizuje cztery wpisy w kodzie do:
< span class="Code"> < lista-plików-powitania>
<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>