浏览代码

Removed unused application context definition files

peter_backlund 18 年前
父节点
当前提交
5e91f36c90

+ 0
- 11
dddsample/src/main/resources/context-messaging-thread.xml 查看文件

@@ -1,11 +0,0 @@
1
-<?xml version="1.0"?>
2
-
3
-<beans xmlns="http://www.springframework.org/schema/beans"
4
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
6
-
7
-  <bean id="domainEventNotifier" class="se.citerus.dddsample.application.messaging.ThreadBasedDomainEventNotifierImpl">
8
-    <property name="bookingService" ref="bookingService"/>
9
-  </bean>
10
-
11
-</beans>

+ 0
- 19
dddsample/src/main/resources/context-persistence-in-mem.xml 查看文件

@@ -1,19 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8"?>
2
-
3
-<beans xmlns="http://www.springframework.org/schema/beans"
4
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
6
-
7
-  <bean id="transactionManager" class="se.citerus.dddsample.application.service.InMemTransactionManager"/>
8
-
9
-  <bean id="cargoRepository" class="se.citerus.dddsample.application.persistence.CargoRepositoryInMem" init-method="init">
10
-    <property name="handlingEventRepository" ref="handlingEventRepository"/>
11
-  </bean>
12
-
13
-  <bean id="handlingEventRepository" class="se.citerus.dddsample.application.persistence.HandlingEventRepositoryInMem" init-method="init"/>
14
-
15
-  <bean id="carrierMovementRepository" class="se.citerus.dddsample.application.persistence.CarrierMovementRepositoryInMem" init-method="setup"/>
16
-
17
-  <bean id="locationRepository" class="se.citerus.dddsample.application.persistence.LocationRepositoryInMem"/>
18
-
19
-</beans>

+ 0
- 8
dddsample/src/main/webapp/WEB-INF/web.xml 查看文件

@@ -17,16 +17,8 @@
17 17
   <context-param>
18 18
     <param-name>contextConfigLocation</param-name>
19 19
     <param-value>
20
-      <!--
21
-      classpath:context-persistence-in-mem.xml
22
-      -->
23 20
       classpath:context-persistence-hibernate.xml
24
-
25
-      <!--
26
-      classpath:context-messaging-thread.xml
27
-      -->
28 21
       classpath:context-messaging-jms.xml
29
-
30 22
       classpath:context-service.xml
31 23
       classpath:context-routingteam.xml
32 24
       classpath:context-remote.xml