Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<beans xmlns="http://www.springframework.org/schema/beans"
3
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
       xmlns:context="http://www.springframework.org/schema/context"
5
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
6

    
7
    <import resource="classpath*:/application-context.xml"/>
8

    
9

    
10
    <import resource="classpath:META-INF/cxf/cxf.xml"/>
11
   <!-- <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/>-->
12
    <import resource="classpath:META-INF/cxf/cxf-extension-jaxws.xml"/>
13
    <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
14
    <import resource="classpath*:/cxf.xml"/>
15
    <import resource="classpath*:/eu/dnetlib/repos/ehcacher/springContext-repos-ehcacher.xml"/>
16
    <import resource="classpath*:/eu/dnetlib/soap/cxf/applicationContext-eprbuilders.xml"/>
17
    <import resource="classpath*:/eu/dnetlib/clients/ws/springContext-locatorFactory.xml"/>
18
    <import resource="classpath*:/eu/dnetlib/users/springContext-users-ldap.xml"/>
19
    <import resource="classpath*:/gr/uoa/di/driver/util/springContext-locators.xml"/>
20
    <import resource="classpath*:/gr/uoa/di/driver/app/springContext-lookupFactory.xml"/>
21
    <import resource="classpath*:/gr/uoa/di/driver/app/springContext-lookupClients.xml"/>
22
    <import resource="classpath*:/eu/dnetlib/enabling/hcm/springContext-hcmService.xml"/>
23
    <import resource="classpath*:/gr/uoa/di/driver/app/springContext-commons.xml"/>
24
    <import resource="classpath*:/gr/uoa/di/driver/app/springContext-registrator.xml"/>
25

    
26
    <import resource="classpath*:/eu/dnetlib/repos/springContext-repos-dms-cached.xml"/>
27

    
28

    
29
    <context:property-placeholder location="classpath*:/eu/**/application.properties" />
30

    
31
    <bean class="eu.dnetlib.repo.manager.service.config.CascadingPropertyLoader" id="propertyLoader">
32
        <property name="order" value="2" />
33
        <property name="properties">
34
            <bean class="eu.dnetlib.conf.WebappContextProperyFactory">
35
                <property name="propertyFetcher">
36
                    <bean class="eu.dnetlib.conf.PropertyFetcher" />
37
                </property>
38
            </bean>
39
        </property>
40
        <property name="ignoreUnresolvablePlaceholders" value="true" />
41
        <property name="locations">
42
            <list>
43
                <value>classpath*:/gr/**/springContext-*.properties</value>
44
                <value>classpath*:/eu/**/springContext-*.properties</value>
45

    
46
                <value>classpath*:/eu/dnetlib/repo/manager/service/email-texts.properties</value>
47

    
48
                <value>classpath*:dnet-site-wizard.properties</value>
49
                <value>classpath*:dnet-site-override.properties</value>
50
                <value>classpath*:dnet-wizard.properties</value>
51
                <value>classpath*:dnet-override.properties</value>
52
                <value>classpath*:dnet-validator-wizard.properties</value>
53
                <value>classpath*:dnet-validator-override.properties</value>
54
                <value>classpath*:dnet-site-force-override.properties</value>
55
                <value>classpath*:dnet-force-override.properties</value>
56
            </list>
57
        </property>
58
    </bean>
59

    
60
</beans>
(1-1/4)