]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/resources/org/argeo/slc/castor/spring/applicationContext.xml
Introduce org.argeo.slc.specs
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / resources / org / argeo / slc / castor / spring / applicationContext.xml
1 <beans xmlns="http://www.springframework.org/schema/beans"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"
4 default-lazy-init="true">
5
6 <bean id="slcDefault.castor.marshaller"
7 class="org.springframework.oxm.castor.CastorMarshaller">
8 <property name="mappingLocations">
9 <list>
10 <value>
11 classpath:org/argeo/slc/castor/msg/mapping.xml
12 </value>
13 <value>
14 classpath:org/argeo/slc/castor/process/mapping.xml
15 </value>
16 <value>
17 classpath:org/argeo/slc/castor/structure/mapping.xml
18 </value>
19 <value>
20 classpath:org/argeo/slc/castor/test/mapping.xml
21 </value>
22 </list>
23 </property>
24 <property name="whitespacePreserve" value="true" />
25 </bean>
26
27 <bean id="slcDefault.castor.xsltReportGenerator"
28 class="org.argeo.slc.core.test.tree.XsltReportGenerator"
29 init-method="init">
30 <property name="xsltStyleSheet"
31 value="classpath:/org/argeo/slc/core/test/tree/basicReport.xslt" />
32 <property name="marshaller" ref="slcDefault.castor.marshaller" />
33 <property name="logXml" value="false" />
34 <property name="outputDir" value="${slc.workDir}/results/html" />
35 </bean>
36
37
38 </beans>