Просмотр исходного кода

Removed unused application context definition files

peter_backlund 18 лет назад
Родитель
Сommit
5e91f36c90

+ 0
- 11
dddsample/src/main/resources/context-messaging-thread.xml Просмотреть файл

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
-<?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
   <context-param>
17
   <context-param>
18
     <param-name>contextConfigLocation</param-name>
18
     <param-name>contextConfigLocation</param-name>
19
     <param-value>
19
     <param-value>
20
-      <!--
21
-      classpath:context-persistence-in-mem.xml
22
-      -->
23
       classpath:context-persistence-hibernate.xml
20
       classpath:context-persistence-hibernate.xml
24
-
25
-      <!--
26
-      classpath:context-messaging-thread.xml
27
-      -->
28
       classpath:context-messaging-jms.xml
21
       classpath:context-messaging-jms.xml
29
-
30
       classpath:context-service.xml
22
       classpath:context-service.xml
31
       classpath:context-routingteam.xml
23
       classpath:context-routingteam.xml
32
       classpath:context-remote.xml
24
       classpath:context-remote.xml