Project

General

Profile

1 45067 katerina.i
<?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 47651 sofia.balt
       xsi:schemaLocation="http://www.springframework.org/schema/beans
7
       http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
8
	   http://www.springframework.org/schema/context
9
		   http://www.springframework.org/schema/context/spring-context-4.2.xsd">
10 45067 katerina.i
11 46502 katerina.i
    <import resource="classpath*:/eu/dnetlib/openaire/user/springContext-userManagementService.xml" />
12 45067 katerina.i
13
    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
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>
21
            </bean>
22
        </property>
23
        <property name="locations">
24
            <list>
25
                <value>classpath*:/eu/**/applicationContext*.properties</value>
26
                <value>classpath*:/eu/dnetlib/applicationContext-defaultProperties.properties</value>
27 45075 katerina.i
                <value>classpath*:/eu/**/springContext-userManagementService.properties</value>
28 45067 katerina.i
29
                <value>classpath*:/uoa-override.properties</value>
30
                <value>classpath*:/dnet-override.properties</value>
31
            </list>
32
        </property>
33
    </bean>
34
35 46502 katerina.i
    <context:annotation-config />
36
37 45067 katerina.i
</beans>