Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2

    
3
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
       xmlns:context="http://www.springframework.org/schema/context"
5
       xmlns="http://www.springframework.org/schema/beans"
6
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
7
	http://www.springframework.org/schema/context
8
		   http://www.springframework.org/schema/context/spring-context-4.0.xsd">
9

    
10
    <!-- <import resource="classpath*:/eu/dnetlib/data/statsmanager/springContext-statsManager.xml"/> -->
11

    
12
    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
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>
20
            </bean>
21
        </property>
22
        <property name="locations">
23
            <list>
24
                <value>classpath*:/eu/**/applicationContext*.properties</value>
25
                <value>classpath*:/eu/dnetlib/applicationContext-defaultProperties.properties</value>
26

    
27
                <value>classpath*:/uoa-override.properties</value>
28
                <value>classpath*:/dnet-override.properties</value>
29
            </list>
30
        </property>
31
    </bean>
32

    
33
</beans>
(1-1/3)