|
|
@@ -7,6 +7,10 @@
|
|
7
|
7
|
<display-name>DDDSample</display-name>
|
|
8
|
8
|
|
|
9
|
9
|
<listener>
|
|
|
10
|
+ <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
|
|
|
11
|
+ </listener>
|
|
|
12
|
+
|
|
|
13
|
+ <listener>
|
|
10
|
14
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
11
|
15
|
</listener>
|
|
12
|
16
|
|
|
|
@@ -17,24 +21,37 @@
|
|
17
|
21
|
<context-param>
|
|
18
|
22
|
<param-name>contextConfigLocation</param-name>
|
|
19
|
23
|
<param-value>
|
|
20
|
|
- classpath:context-persistence-hibernate.xml
|
|
21
|
|
- classpath:context-messaging-jms.xml
|
|
22
|
|
- classpath:context-service.xml
|
|
23
|
|
- classpath:context-routingteam.xml
|
|
24
|
|
- classpath:context-remote.xml
|
|
25
|
|
- classpath:context-web.xml
|
|
|
24
|
+ classpath:com/partner/pathfinder/internal/applicationContext.xml
|
|
|
25
|
+
|
|
|
26
|
+ classpath:context-infrastructure.xml
|
|
|
27
|
+ classpath:context-application.xml
|
|
|
28
|
+ classpath:context-domain.xml
|
|
|
29
|
+ classpath:context-interfaces.xml
|
|
26
|
30
|
</param-value>
|
|
27
|
31
|
</context-param>
|
|
28
|
32
|
|
|
29
|
33
|
<servlet>
|
|
30
|
|
- <servlet-name>dispatch</servlet-name>
|
|
|
34
|
+ <servlet-name>tracking</servlet-name>
|
|
31
|
35
|
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|
32
|
|
- <load-on-startup>1</load-on-startup>
|
|
33
|
36
|
</servlet>
|
|
34
|
37
|
|
|
35
|
38
|
<servlet-mapping>
|
|
36
|
|
- <servlet-name>dispatch</servlet-name>
|
|
37
|
|
- <url-pattern>*.html</url-pattern>
|
|
|
39
|
+ <servlet-name>tracking</servlet-name>
|
|
|
40
|
+ <url-pattern>/public/*</url-pattern>
|
|
|
41
|
+ </servlet-mapping>
|
|
|
42
|
+
|
|
|
43
|
+ <servlet>
|
|
|
44
|
+ <servlet-name>booking</servlet-name>
|
|
|
45
|
+ <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|
|
46
|
+ <init-param>
|
|
|
47
|
+ <param-name></param-name>
|
|
|
48
|
+ <param-value></param-value>
|
|
|
49
|
+ </init-param>
|
|
|
50
|
+ </servlet>
|
|
|
51
|
+
|
|
|
52
|
+ <servlet-mapping>
|
|
|
53
|
+ <servlet-name>booking</servlet-name>
|
|
|
54
|
+ <url-pattern>/admin/*</url-pattern>
|
|
38
|
55
|
</servlet-mapping>
|
|
39
|
56
|
|
|
40
|
57
|
<servlet>
|
|
|
@@ -54,7 +71,12 @@
|
|
54
|
71
|
|
|
55
|
72
|
<filter-mapping>
|
|
56
|
73
|
<filter-name>sitemesh</filter-name>
|
|
57
|
|
- <servlet-name>dispatch</servlet-name>
|
|
|
74
|
+ <servlet-name>booking</servlet-name>
|
|
|
75
|
+ </filter-mapping>
|
|
|
76
|
+
|
|
|
77
|
+ <filter-mapping>
|
|
|
78
|
+ <filter-name>sitemesh</filter-name>
|
|
|
79
|
+ <servlet-name>tracking</servlet-name>
|
|
58
|
80
|
</filter-mapping>
|
|
59
|
81
|
|
|
60
|
82
|
<jsp-config>
|