Subversion Repositories SmartDukaan

Rev

Rev 1082 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
162 naveen 1
<?xml version="1.0" encoding="UTF-8"?>
2
 
3
<web-app id="starter" version="2.4"
4
         xmlns="http://java.sun.com/xml/ns/j2ee"
5
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
7
 
8
  <display-name>Shop2020.in Content Creation</display-name>
9
 
10
  <!-- Filters -->
11
    <filter>
12
        <filter-name>action2</filter-name>
13
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
14
    </filter>
15
 
16
    <filter-mapping>
17
        <filter-name>action2</filter-name>
18
        <url-pattern>/*</url-pattern>
19
    </filter-mapping>
20
 
3971 mandeep.dh 21
    <listener>
22
        <listener-class>in.shop2020.creation.util.BackgroundTaskExecutor</listener-class>
23
    </listener>
24
 
162 naveen 25
    <!-- Welcome file lists -->
26
    <welcome-file-list>
27
        <welcome-file>index.jsp</welcome-file>
28
    </welcome-file-list>
29
 
30
</web-app>