1

我有一个特殊的问题。我们在 web.xml 中有欢迎文件列表。当我们在 tomcat / JBoss 上部署战争并在欢迎文件列表中没有 html 文件的情况下点击我们的 URL 时,应用程序被正确重定向。但是,Websphere 中没有发生相同的重定向。我们是否必须做其他事情才能使其在 Websphere 上运行?

web.xml 的片段 -

<filter>
<filter-name>AppFilter</filter-name>
<filter-class>com.proj.filters.AppFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>AppFilter</filter-name>
<url-pattern>/index.html</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>

我们期望的是,当我们点击应用程序 url 时,它应该被添加欢迎文件,并且应该调用我的过滤器。这适用于 JBoss,但不适用于 Websphere。

4

0 回答 0