|
@@ -0,0 +1,91 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
|
|
|
+<web-app id="WebApp">
|
|
|
+ <display-name>poc-acegi-web</display-name>
|
|
|
+ <context-param>
|
|
|
+ <param-name>contextConfigLocation</param-name>
|
|
|
+ <param-value>classpath:j2ee-acegi-security.xml</param-value>
|
|
|
+ </context-param>
|
|
|
+ <context-param>
|
|
|
+ <param-name>log4jConfigLocation</param-name>
|
|
|
+ <param-value>/WEB-INF/classes/log4j.properties</param-value>
|
|
|
+ </context-param>
|
|
|
+
|
|
|
+ <filter>
|
|
|
+ <filter-name>Acegi Filter Chain Proxy</filter-name>
|
|
|
+ <filter-class>org.acegisecurity.util.FilterToBeanProxy</filter-class>
|
|
|
+ <init-param>
|
|
|
+ <param-name>targetClass</param-name>
|
|
|
+ <param-value>org.acegisecurity.util.FilterChainProxy</param-value>
|
|
|
+ </init-param>
|
|
|
+ </filter>
|
|
|
+ <filter-mapping>
|
|
|
+ <filter-name>Acegi Filter Chain Proxy</filter-name>
|
|
|
+ <url-pattern>/*</url-pattern>
|
|
|
+ </filter-mapping>
|
|
|
+
|
|
|
+ <listener>
|
|
|
+ <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
|
|
|
+ </listener>
|
|
|
+ <listener>
|
|
|
+ <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
+ </listener>
|
|
|
+ <listener>
|
|
|
+ <listener-class>org.acegisecurity.ui.session.HttpSessionEventPublisher</listener-class>
|
|
|
+ </listener>
|
|
|
+
|
|
|
+ <servlet>
|
|
|
+ <servlet-name>dispatch</servlet-name>
|
|
|
+ <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|
|
+ <load-on-startup>1</load-on-startup>
|
|
|
+ </servlet>
|
|
|
+ <servlet-mapping>
|
|
|
+ <servlet-name>dispatch</servlet-name>
|
|
|
+ <url-pattern>*.form</url-pattern>
|
|
|
+ </servlet-mapping>
|
|
|
+ <welcome-file-list>
|
|
|
+ <welcome-file>index.html</welcome-file>
|
|
|
+ <welcome-file>index.htm</welcome-file>
|
|
|
+ <welcome-file>index.jsp</welcome-file>
|
|
|
+ <welcome-file>default.html</welcome-file>
|
|
|
+ <welcome-file>default.htm</welcome-file>
|
|
|
+ <welcome-file>default.jsp</welcome-file>
|
|
|
+ </welcome-file-list>
|
|
|
+ <resource-ref id="ResourceRef_1185189465160">
|
|
|
+ <res-ref-name>jms/testQueue</res-ref-name>
|
|
|
+ <res-type>javax.jms.Queue</res-type>
|
|
|
+ <res-auth>Container</res-auth>
|
|
|
+ <res-sharing-scope>Shareable</res-sharing-scope>
|
|
|
+ </resource-ref>
|
|
|
+ <resource-ref id="ResourceRef_1185189465170">
|
|
|
+ <res-ref-name>jms/testQCF</res-ref-name>
|
|
|
+ <res-type>javax.jms.QueueConnectionFactory</res-type>
|
|
|
+ <res-auth>Container</res-auth>
|
|
|
+ <res-sharing-scope>Shareable</res-sharing-scope>
|
|
|
+ </resource-ref>
|
|
|
+ <security-constraint>
|
|
|
+ <web-resource-collection>
|
|
|
+ <web-resource-name>Default</web-resource-name>
|
|
|
+ <url-pattern>/*</url-pattern>
|
|
|
+ </web-resource-collection>
|
|
|
+ <auth-constraint>
|
|
|
+ <role-name>*</role-name>
|
|
|
+ </auth-constraint>
|
|
|
+ </security-constraint>
|
|
|
+ <security-role>
|
|
|
+ <description></description>
|
|
|
+ <role-name>Role1</role-name>
|
|
|
+ </security-role>
|
|
|
+ <security-role>
|
|
|
+ <description></description>
|
|
|
+ <role-name>Role2</role-name>
|
|
|
+ </security-role>
|
|
|
+ <security-role>
|
|
|
+ <description></description>
|
|
|
+ <role-name>Role3</role-name>
|
|
|
+ </security-role>
|
|
|
+ <security-role>
|
|
|
+ <description></description>
|
|
|
+ <role-name>Role4</role-name>
|
|
|
+ </security-role>
|
|
|
+</web-app>
|