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
|
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
|
|
11
|
<import resource="classpath*:/eu/dnetlib/openaire/user/springContext-userManagementService.xml" />
|
12
|
|
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
|
<value>classpath*:/eu/**/springContext-userManagementService.properties</value>
|
28
|
|
29
|
<value>classpath*:/uoa-override.properties</value>
|
30
|
<value>classpath*:/dnet-override.properties</value>
|
31
|
</list>
|
32
|
</property>
|
33
|
</bean>
|
34
|
|
35
|
<context:annotation-config />
|
36
|
|
37
|
</beans>
|