peter_backlund před 17 roky
rodič
revize
4afa142df9

+ 2
- 2
dddsample/external/reporting/src/main/resources/context-cxf.xml Zobrazit soubor

21
       <ref bean="reportingService"/>
21
       <ref bean="reportingService"/>
22
     </jaxrs:serviceBeans>
22
     </jaxrs:serviceBeans>
23
     <jaxrs:providers>
23
     <jaxrs:providers>
24
-      <bean class="com.reporting2.pdf.PDFCargoReportProvider"/>
25
-      <bean class="com.reporting2.pdf.PDFVoyageReportProvider"/>
24
+      <bean class="com.reporting.pdf.PDFCargoReportProvider"/>
25
+      <bean class="com.reporting.pdf.PDFVoyageReportProvider"/>
26
     </jaxrs:providers>
26
     </jaxrs:providers>
27
   </jaxrs:server>
27
   </jaxrs:server>
28
 
28
 

+ 1
- 1
dddsample/external/reporting/src/main/resources/context-test-setup.xml Zobrazit soubor

4
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
5
        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
6
 
6
 
7
-  <bean class="com.reporting2.Fixture">
7
+  <bean class="com.reporting.Fixture">
8
     <constructor-arg ref="dataSource"/>
8
     <constructor-arg ref="dataSource"/>
9
     <constructor-arg value="classpath:schema.sql"/>
9
     <constructor-arg value="classpath:schema.sql"/>
10
     <constructor-arg value="classpath:sample_data.sql"/>
10
     <constructor-arg value="classpath:sample_data.sql"/>

+ 2
- 2
dddsample/external/reporting/src/main/resources/context.xml Zobrazit soubor

15
 
15
 
16
   <tx:annotation-driven transaction-manager="transactionManager"/>
16
   <tx:annotation-driven transaction-manager="transactionManager"/>
17
 
17
 
18
-  <bean id="reportDAO" class="com.reporting2.db.ReportDAO">
18
+  <bean id="reportDAO" class="com.reporting.db.ReportDAO">
19
     <constructor-arg ref="dataSource"/>
19
     <constructor-arg ref="dataSource"/>
20
   </bean>
20
   </bean>
21
 
21
 
22
-  <bean id="reportingService" class="com.reporting2.ReportingService">
22
+  <bean id="reportingService" class="com.reporting.ReportingService">
23
     <constructor-arg ref="reportDAO"/>
23
     <constructor-arg ref="reportDAO"/>
24
   </bean>
24
   </bean>
25
 
25
 

+ 2
- 2
dddsample/external/reporting/src/test/resources/context-cxf.xml Zobrazit soubor

21
       <ref bean="reportingService"/>
21
       <ref bean="reportingService"/>
22
     </jaxrs:serviceBeans>
22
     </jaxrs:serviceBeans>
23
     <jaxrs:providers>
23
     <jaxrs:providers>
24
-      <bean class="com.reporting2.pdf.PDFCargoReportProvider"/>
25
-      <bean class="com.reporting2.pdf.PDFVoyageReportProvider"/>
24
+      <bean class="com.reporting.pdf.PDFCargoReportProvider"/>
25
+      <bean class="com.reporting.pdf.PDFVoyageReportProvider"/>
26
     </jaxrs:providers>
26
     </jaxrs:providers>
27
   </jaxrs:server>
27
   </jaxrs:server>
28
 
28