| 2674 |
vikas |
1 |
<!DOCTYPE web-app PUBLIC
|
|
|
2 |
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
|
|
|
3 |
"http://java.sun.com/dtd/web-app_2_3.dtd" >
|
|
|
4 |
|
|
|
5 |
<web-app id="starter" version="2.4"
|
|
|
6 |
xmlns="http://java.sun.com/xml/ns/j2ee"
|
|
|
7 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
8 |
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
|
|
|
9 |
|
|
|
10 |
<display-name>crm.shop2020.in</display-name>
|
|
|
11 |
|
|
|
12 |
<!-- Filters -->
|
|
|
13 |
<filter>
|
| 3090 |
mandeep.dh |
14 |
<filter-name>ShiroFilter</filter-name>
|
|
|
15 |
<filter-class>org.apache.shiro.web.servlet.IniShiroFilter</filter-class>
|
|
|
16 |
</filter>
|
|
|
17 |
|
|
|
18 |
<filter-mapping>
|
|
|
19 |
<filter-name>ShiroFilter</filter-name>
|
|
|
20 |
<url-pattern>/*</url-pattern>
|
|
|
21 |
</filter-mapping>
|
|
|
22 |
|
|
|
23 |
<filter>
|
| 2674 |
vikas |
24 |
<filter-name>action2</filter-name>
|
|
|
25 |
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
|
|
|
26 |
</filter>
|
|
|
27 |
|
|
|
28 |
<filter-mapping>
|
|
|
29 |
<filter-name>action2</filter-name>
|
|
|
30 |
<url-pattern>/*</url-pattern>
|
|
|
31 |
</filter-mapping>
|
|
|
32 |
</web-app>
|