Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<beans xmlns="http://www.springframework.org/schema/beans"
3
	   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4

    
5
	   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"
6
	   default-autowire="no">
7

    
8

    
9
	<bean class="eu.dnetlib.repo.manager.server.config.CascadingPropertyLoader" id="propertyLoader">
10
		<property name="order" value="2" />
11
		<property name="properties">
12
			<bean class="eu.dnetlib.conf.WebappContextProperyFactory">
13
				<property name="propertyFetcher">
14
					<bean class="eu.dnetlib.conf.PropertyFetcher" />
15
				</property>
16
			</bean>
17
		</property>
18
		<property name="ignoreUnresolvablePlaceholders" value="true" />
19
		<property name="locations">
20
			<list>
21
				<value>classpath*:/gr/**/springContext-*.properties</value>
22
				<value>classpath*:/eu/**/springContext-*.properties</value>
23

    
24
				<value>classpath*:/eu/dnetlib/repo/manager/server/email-texts.properties</value>
25

    
26
				<value>classpath*:dnet-site-wizard.properties</value>
27
				<value>classpath*:dnet-site-override.properties</value>
28
				<value>classpath*:dnet-wizard.properties</value>
29
				<value>classpath*:dnet-override.properties</value>
30
				<value>classpath*:dnet-validator-wizard.properties</value>
31
				<value>classpath*:dnet-validator-override.properties</value>
32
				<value>classpath*:dnet-site-force-override.properties</value>
33
				<value>classpath*:dnet-force-override.properties</value>
34
			</list>
35
		</property>
36
	</bean>
37
</beans>
(2-2/3)