vote up 0 vote down star

I would like to apply a filter to severl url endings. The next configuraiton seems to work.

<filter>
    <filter-name>LanguageFilter</filter-name>
    <filter-class>filters.LanguageFilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>LanguageFilter</filter-name>
    <url-pattern>*.do</url-pattern>
</filter-mapping>
<filter-mapping>
    <filter-name>LanguageFilter</filter-name>
    <url-pattern>*.xml</url-pattern>
</filter-mapping>

Originally I asked if it was possible to use wildcards such as:

    <url-pattern>*.do|*.xml</url-pattern>

But it does not seem to be possible.

flag

60% accept rate

1 Answer

vote up 1 vote down

There is no notion of such an operator in the standard, so you need two mappings. The specification of the mappings is available in the servlet specification. See this article for a link and section.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.