diff options
Diffstat (limited to 'server/sonar-web/src/main/webapp/WEB-INF/web.xml')
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/web.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/web.xml b/server/sonar-web/src/main/webapp/WEB-INF/web.xml index d040ec6d1ce..0079ac0ed10 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/web.xml +++ b/server/sonar-web/src/main/webapp/WEB-INF/web.xml @@ -1,4 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> + <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" @@ -32,8 +33,8 @@ <filter-class>org.sonar.server.platform.web.RootFilter</filter-class> </filter> <filter> - <filter-name>RoutesFilter</filter-name> - <filter-class>org.sonar.server.platform.web.RoutesFilter</filter-class> + <filter-name>RedirectFilter</filter-name> + <filter-class>org.sonar.server.platform.web.RedirectFilter</filter-class> </filter> <filter> <filter-name>RequestUidFilter</filter-name> @@ -58,7 +59,7 @@ <url-pattern>/*</url-pattern> </filter-mapping> <filter-mapping> - <filter-name>RoutesFilter</filter-name> + <filter-name>RedirectFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <filter-mapping> |