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
    <import resource="classpath*:/eu/**/applicationContext-goldoa-portal.xml" />
12

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

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

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

    
41
    <context:annotation-config />
42
</beans>
(1-1/4)