Project

General

Profile

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 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

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

    
15
	<import resource="classpath*:/gr/uoa/di/driver/app/springContext-commons.xml" />
16
	<import resource="classpath*:/gr/uoa/di/driver/util/springContext-locators.xml" />
17
	<import resource="classpath*:/gr/uoa/di/driver/app/springContext-registrator.xml" />
18
	<import resource="classpath*:/eu/dnetlib/clients/ws/springContext-locatorFactory.xml" />
19
	<import resource="classpath*:/eu/dnetlib/soap/cxf/applicationContext-eprbuilders.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*:/eu/dnetlib/enabling/hcm/springContext-hcmService.xml" />
23
	<import resource="classpath*:/eu/dnetlib/data/claims/springContext-claims.xml"/>
24
	<import resource="classpath*:/eu/dnetlib/openaire/rest/springContext-claims-authorization.xml"/>
25
	<!--
26
	<import resource="classpath*:/eu/dnetlib/openaire/thrift/springContext-openaire-thrift.xml" /> -->
27

    
28
	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
29
                <property name="order" value="2" />
30
                <property name="ignoreUnresolvablePlaceholders" value="true" />
31
				<property name="properties">
32
					<bean class="eu.dnetlib.conf.WebappContextProperyFactory">
33
						<property name="propertyFetcher">
34
							<bean class="eu.dnetlib.conf.PropertyFetcher" />
35
						</property>
36
					</bean>
37
				</property>
38
				<property name="locations">
39
						<list>
40
							<value>classpath*:/eu/**/applicationContext*.properties</value>
41
							<value>classpath*:/eu/dnetlib/applicationContext-defaultProperties.properties</value>
42
							<value>classpath*:/gr/**/springContext-commons.properties</value>
43
								<value>classpath*:/gr/**/springContext-registrator.properties</value>
44
								<value>classpath*:/gr/**/springContext-locators.properties</value>
45

    
46
								<value>classpath*:/eu/dnetlib/data/claims/springContext-claims.properties</value>
47
								<value>classpath*:/eu/dnetlib/openaire/rest/springContext-claims-authorization.properties</value>
48
								<value>classpath*:/gr/uoa/di/driver/app/springContext-lookupFactory.properties</value>
49
								<value>classpath*:/eu/dnetlib/enabling/hcm/springContext-hcmService.properties</value>
50

    
51
<!--								<value>classpath*:/eu/dnetlib/openaire/applicationContext-openaire.properties</value>-->
52
<!--								<value>classpath*:/eu/dnetlib/openaire/thrift/springContext-openaire-thrift.properties</value>-->
53

    
54

    
55
								<value>classpath*:dnet-site-override.properties</value>
56
<!--								<value>classpath*:dnet-dnet-openaire-connector-wizard.properties</value>-->
57
<!--								<value>classpath*:dnet-dnet-openaire-connector-override.properties</value>-->
58

    
59
								<value>classpath*:/uoa-override.properties</value>
60
								<value>classpath*:/dnet-override.properties</value>
61

    
62
								<value>classpath*:dnet-force-override.properties</value>
63

    
64
						</list>
65
				</property>
66
			</bean>
67

    
68
	<context:annotation-config />
69
	<context:component-scan base-package="eu.dnetlib.openaire.rest"/>
70
<!--
71
	<context:component-scan base-package="eu.dnetlib.api.enabling"/>
72
-->
73

    
74
	<!-- if the following import is not the last one, something overrides bus
75
		configuration disabling logging and any other customized feature. -->
76
	<import resource="./cxf.xml" />
77

    
78
</beans>
(1-1/4)