避免在 Web 模块欢迎文件名中使用 /

此规则会标记任何 Web 模块 <welcome-file> web.xml 文件中以正斜杠字符 (/) 或反斜杠字符 (\) 开头。

自动修复功能将删除名称中的 / 或 \。

给定以下欢迎文件列表:
<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>