Questa regola contrassegna qualsiasi modulo Web
<welcome-file>
che inizia con un carattere barra (/) o barra retroversa (\) nel file web.xml .
La correzione automatica rimuoverĂ la / o la \ dal nome.
Dato il seguente elenco di file di benvenuto:
< span class="Code"> < elenco - file - benvenuto>
<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>
La correzione automatica aggiornerĂ quattro voci del codice in:
< span class="Code"> < elenco - file - benvenuto>
<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>