Project

General

Profile

1 34955 nikon.gasp
<?xml version="1.0" encoding="UTF-8"?>
2
3
<beans xmlns="http://www.springframework.org/schema/beans"
4
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
5
	xmlns:context="http://www.springframework.org/schema/context"
6
7
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
8
	http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
9
10
11
12 35741 nikon.gasp
<!-- 	<import resource="classpath*:/eu/dnetlib/validator/admin/**/springContext-*.xml" /> -->
13
<!-- 	<import resource="classpath*:/eu/dnetlib/validator/commons/**/springContext-*.xml" /> -->
14 34955 nikon.gasp
15
	<context:annotation-config />
16
17 35741 nikon.gasp
<bean class="eu.dnetlib.validator.web.config.CascadingPropertyLoader"
18 34955 nikon.gasp
		id="propertyLoader">
19
		<property name="order" value="2" />
20
		<property name="properties">
21
			<bean class="eu.dnetlib.conf.WebappContextProperyFactory">
22
				<property name="propertyFetcher">
23
					<bean class="eu.dnetlib.conf.PropertyFetcher" />
24
				</property>
25
			</bean>
26
		</property>
27
		<property name="ignoreUnresolvablePlaceholders" value="true" />
28 35741 nikon.gasp
		<property name="locations">			<list>
29 34955 nikon.gasp
				<value>classpath*:/gr/**/springContext-*.properties</value>
30
				<value>classpath*:/eu/**/springContext-*.properties</value>
31
32
				<value>classpath*:dnet-site-wizard.properties</value>
33
				<value>classpath*:dnet-site-override.properties</value>
34
				<value>classpath*:dnet-wizard.properties</value>
35
				<value>classpath*:dnet-override.properties</value>
36
				<value>classpath*:dnet-validator-wizard.properties</value>
37
				<value>classpath*:dnet-validator-override.properties</value>
38
				<value>classpath*:dnet-site-force-override.properties</value>
39
				<value>classpath*:dnet-force-override.properties</value>
40
			</list>
41
		</property>
42
	</bean>
43
44
</beans>