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

    
10
    <import resource="classpath*:/eu/**/applicationContext-goldoa-service.xml" />
11

    
12
    <bean id="cascadingPropertyLoader" class="eu.dnetlib.utils.CascadingPropertyLoader">
13
        <property name="order" value="2" />
14
        <property name="ignoreUnresolvablePlaceholders" value="true" />
15
        <property name="properties">
16
            <bean class="eu.dnetlib.conf.WebappContextProperyFactory">
17
                <property name="propertyFetcher">
18
                    <bean class="eu.dnetlib.conf.PropertyFetcher" >
19
                        <property name="unchangedHostname" value="true" />
20
                    </bean>
21
                </property>
22
            </bean>
23
        </property>
24
        <property name="locations">
25
            <list>
26
                <value>classpath*:/eu/**/applicationContext-goldoa-service.properties</value>
27

    
28
                <value>classpath*:/dnet-site-override.properties</value>
29
                <value>classpath*:/dnet-dnet-goldoa-portal-wizard.properties</value>
30
                <value>classpath*:/dnet-dnet-goldoa-portal-override.properties</value>
31

    
32
                <value>classpath*:/uoa-override.properties</value>
33
                <value>classpath*:/dnet-override.properties</value>
34
                <value>classpath*:dnet-force-override.properties</value>
35
            </list>
36
        </property>
37
    </bean>
38

    
39
    <context:annotation-config />
40
</beans>
(1-1/4)