]> git.argeo.org Git - gpl/argeo-slc.git/blob - server/org.argeo.slc.ria/src/WEB-INF/web.xml
Disable role restriction
[gpl/argeo-slc.git] / server / org.argeo.slc.ria / src / WEB-INF / web.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
4 version="2.5">
5
6 <display-name>SLC Web UI</display-name>
7
8 <!-- General -->
9 <context-param>
10 <param-name>contextConfigLocation</param-name>
11 <param-value>/WEB-INF/applicationContext.xml</param-value>
12 </context-param>
13
14 <listener>
15 <display-name>Spring Context</display-name>
16 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
17 </listener>
18 <context-param>
19 <param-name>contextClass</param-name>
20 <param-value>org.springframework.osgi.web.context.support.OsgiBundleXmlWebApplicationContext</param-value>
21 </context-param>
22
23 <!-- Security -->
24 <filter>
25 <filter-name>springSecurityFilterChain</filter-name>
26 <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
27 </filter>
28
29 <filter-mapping>
30 <filter-name>springSecurityFilterChain</filter-name>
31 <url-pattern>/*</url-pattern>
32 </filter-mapping>
33
34
35 </web-app>