Menu

#53 Modify web.xml for websphere compatibility

open
nobody
woko-core (51)
5
2009-10-20
2009-10-20
No

To be able to run woko on websphere, there are some fixes to do in web.xml

1°) Replace RequestContextListener by RequestContextFilter

<filter>
<filter-name>requestContextFilter</filter-name>
<filter-class>org.springframework.web.filter.RequestContextFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>requestContextFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

2°) add dispatcher FORWARD to StripesFilter

Discussion


Log in to post a comment.