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
	xmlns:context="http://www.springframework.org/schema/context"
5
	xmlns:cxf="http://cxf.apache.org/core"
6
	xmlns:jaxws="http://cxf.apache.org/jaxws"
7
	xmlns:p="http://www.springframework.org/schema/p"
8
	xmlns:template="http://dnetlib.eu/springbeans/template"
9
	xmlns:t="http://dnetlib.eu/springbeans/t"
10
	xmlns:tx="http://www.springframework.org/schema/tx"
11

    
12
	xsi:schemaLocation="
13
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
14
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
15
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
16
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
17
        http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
18
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
19
        http://dnetlib.eu/springbeans/template http://dnetlib.eu/springbeans/template.xsd"
20
	default-autowire="no">
21

    
22
	<bean class="eu.dnetlib.repo.manager.server.config.CascadingPropertyLoader" id="propertyLoader">
23
		<property name="order" value="2" />
24
		<property name="properties">
25
			<bean class="eu.dnetlib.conf.WebappContextProperyFactory">
26
				<property name="propertyFetcher">
27
					<bean class="eu.dnetlib.conf.PropertyFetcher" />
28
				</property>
29
			</bean>
30
		</property>
31
		<property name="ignoreUnresolvablePlaceholders" value="true" />
32
		<property name="locations">
33
			<list>
34
				<value>classpath*:/gr/**/springContext-*.properties</value>
35
				<value>classpath*:/eu/**/springContext-*.properties</value>
36

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

    
39
				<value>classpath*:dnet-site-wizard.properties</value>
40
				<value>classpath*:dnet-site-override.properties</value>
41
				<value>classpath*:dnet-wizard.properties</value>
42
				<value>classpath*:dnet-override.properties</value>
43
				<value>classpath*:dnet-validator-wizard.properties</value>
44
				<value>classpath*:dnet-validator-override.properties</value>
45
				<value>classpath*:dnet-site-force-override.properties</value>
46
				<value>classpath*:dnet-force-override.properties</value>
47
			</list>
48
		</property>
49
	</bean>
50
</beans>
(1-1/2)