[jboss-jira] [JBoss JIRA] (WFLY-2162) <servlet-name> does not work in <filter-mapping>
Nick Howes (JIRA)
jira-events at lists.jboss.org
Thu Sep 26 06:20:02 EDT 2013
Nick Howes created WFLY-2162:
--------------------------------
Summary: <servlet-name> does not work in <filter-mapping>
Key: WFLY-2162
URL: https://issues.jboss.org/browse/WFLY-2162
Project: WildFly
Issue Type: Bug
Components: Web (Undertow)
Affects Versions: 8.0.0.Alpha4
Reporter: Nick Howes
Assignee: Stuart Douglas
I have a filter mapped in web.xml with a <filter-mapping> and a <servlet-mapping> element set to the value of a servlet, but the filter is never run. If I replace the <servlet-mapping> element with <url-pattern>/</url-pattern>, the filter runs, but it also runs for all other servlets.
The servlet and filter in question:
{code:xml}
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<filter>
<filter-name>filters</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>filters</filter-name>
<servlet-name>spring</servlet-name>
<!-- <url-pattern>/</url-pattern> -->
</filter-mapping>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list