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" xmlns:p="http://www.springframework.org/schema/p"
4
	xmlns:context="http://www.springframework.org/schema/context"
5
	xmlns:cxf="http://cxf.apache.org/core"
6
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
7
	http://www.springframework.org/schema/context
8
           http://www.springframework.org/schema/context/spring-context-4.0.xsd
9
           http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd">
10

    
11
<!-- 	<import resource="classpath:META-INF/cxf/cxf.xml" /> -->
12
<!-- 	<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" /> -->
13
<!-- 	<import resource="classpath:META-INF/cxf/cxf-extension-jaxws.xml" /> -->
14
<!-- 	<import resource="classpath:META-INF/cxf/cxf-servlet.xml" /> -->
15

    
16
<!--     <import resource="classpath*:/eu/dnetlib/soap/cxf/applicationContext-eprbuilders.xml"/> -->
17
<!-- 	<import	resource="classpath*:/gr/uoa/di/driver/util/springContext-locators.xml" /> -->
18
<!-- 	<import	resource="classpath*:/eu/dnetlib/clients/ws/springContext-locatorFactory.xml" /> -->
19
<!-- 	<import	resource="classpath*:/gr/uoa/di/driver/app/springContext-commons.xml" /> -->
20
<!-- 	<import	resource="classpath*:/gr/uoa/di/driver/app/springContext-lookupFactory.xml" /> -->
21
<!-- 	<import	resource="classpath*:/gr/uoa/di/driver/app/springContext-lookupClients.xml" /> -->
22
<!-- 	<import	resource="classpath*:/gr/uoa/di/driver/app/springContext-registrator.xml" /> -->
23
	
24
<!-- 	<import	resource="classpath*:/eu/dnetlib/validator/commons/dao/springContext-validator-dao-datasource.xml" /> -->
25
<!-- 	<import	resource="classpath*:/eu/dnetlib/validator/commons/dao/springContext-validator-dao.xml" /> -->
26
<!-- 	<import	resource="classpath*:/eu/dnetlib/validator/commons/email/springContext-validator-emailer.xml" /> -->
27
<!-- 	<import	resource="classpath*:/eu/dnetlib/validator/service/listeners/springContext-validator-listeners.xml" /> -->
28
<!-- 	<import	resource="classpath*:/eu/dnetlib/validator/service/providers/springContext-validator-providers.xml" /> -->
29

    
30
<!-- 	<import	resource="classpath*:/eu/dnetlib/validator/service/springContext-validator-library.xml" /> -->
31
	
32
<!-- 	<import	resource="classpath*:/eu/dnetlib/enabling/hcm/springContext-hcmService.xml" /> -->
33
<!-- 	<import	resource="classpath*:/eu/dnetlib/validator/service/springContext-validator-service.xml" /> -->
34
	
35
	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
36
		<property name="order" value="2" />
37
		<property name="ignoreUnresolvablePlaceholders" value="true" />
38
		<property name="properties">
39
			<bean class="eu.dnetlib.conf.WebappContextProperyFactory">
40
				<property name="propertyFetcher">
41
					<bean class="eu.dnetlib.conf.PropertyFetcher" >
42
						<property name="unchangedHostname" value="true" />
43
					</bean>
44
				</property>
45
			</bean>
46
		</property>
47
		<property name="locations">
48
			<list>
49
				<value>classpath*:/eu/**/applicationContext*.properties</value>
50
				<value>classpath*:/eu/**/springContext*.properties</value>
51
				<value>classpath*:/gr/**/springContext*.properties</value>
52
				
53
				<value>classpath*:/dnet-override.properties</value>
54
			</list>
55
		</property>
56
	</bean>
57

    
58
	<context:annotation-config />
59

    
60
	<import resource="./cxf.xml" />
61
</beans>
(1-1/4)