Project

General

Profile

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
       xmlns:context="http://www.springframework.org/schema/context"
6
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
7
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd"
8
       >
9

    
10

    
11

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

    
30

    
31
    <import resource="classpath*:/eu/dnetlib/repo/manager/server/config/springContext-repo-manager.xml"/>
32
    <!--<import resource="classpath*:/eu/dnetlib/repo/manager/server/config/springContext-repo-manager-config.xml"/>-->
33
    <import resource="classpath*:/eu/dnetlib/repo/manager/server/config/aai-security.xml"/>
34

    
35

    
36
    <import resource="classpath*:application-context.xml" />
37

    
38
    <context:annotation-config/>
39
    <context:component-scan base-package="eu.dnetlib.repo.manager.server"/>
40
    <context:component-scan base-package="eu.dnetlib.repo.manager.service.controllers"/>
41
    <!--<context:component-scan base-package="gr.uoa.di.driver"/>-->
42

    
43

    
44
    <bean class="eu.dnetlib.repo.manager.server.config.CascadingPropertyLoader"
45
          id="propertyLoader">
46
        <property name="order" value="2"/>
47
        <property name="properties">
48
            <bean class="eu.dnetlib.conf.WebappContextProperyFactory">
49
                <property name="propertyFetcher">
50
                    <bean class="eu.dnetlib.conf.PropertyFetcher"/>
51
                </property>
52
            </bean>
53
        </property>
54
        <property name="ignoreUnresolvablePlaceholders" value="true"/>
55
        <property name="locations">
56
            <list>
57
                <value>classpath*:/gr/**/springContext-*.properties</value>
58
                <value>classpath*:/eu/**/springContext-*.properties</value>
59

    
60
                <value>classpath*:/eu/dnetlib/repo/manager/server/email-texts.properties</value>
61

    
62
                <value>classpath*:dnet-site-wizard.properties</value>
63
                <value>classpath*:dnet-site-override.properties</value>
64
                <value>classpath*:dnet-wizard.properties</value>
65
                <value>classpath*:dnet-override.properties</value>
66
                <value>classpath*:dnet-validator-wizard.properties</value>
67
                <value>classpath*:dnet-validator-override.properties</value>
68
                <value>classpath*:dnet-site-force-override.properties</value>
69
                <value>classpath*:dnet-force-override.properties</value>
70

    
71
                <value>classpath*:/eu/**/application.properties</value>
72

    
73
            </list>
74
        </property>
75
    </bean>
76
</beans>
(1-1/4)