この規則は、任意の Web モジュールにフラグを立てます。
<welcome-file>
これは、 web.xml ファイル内のスラッシュ文字 (/) または円記号 (¥) で始まります。
自動修正では、名前から「/」または「♪」が削除されます。
以下のウェルカム・ファイル・リストがあるとします。
< span class="Code"> < ようこそ-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>
自動修正では、コードの4つの項目が次のように更新される:
< span class="Code"> < ようこそ-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>