我有一个特殊的问题。我们在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>
我们期望当我们点击应用程序网址时,应该使用欢迎文件添加,并且应该调用我的过滤器。这适用于JBoss,但不适用于Websphere。