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

    
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
9
		   http://www.springframework.org/schema/context/spring-context-4.0.xsd">
10

    
11
	<import resource="classpath:META-INF/cxf/cxf.xml" />
12
	
13
	<import resource="classpath*:/gr/uoa/di/driver/app/springContext-commons.xml" />
14
	<import resource="classpath*:/gr/uoa/di/driver/util/springContext-locators.xml" />
15
	<import resource="classpath*:/gr/uoa/di/driver/app/springContext-registrator.xml" />
16
	<import resource="classpath*:/eu/dnetlib/clients/ws/springContext-locatorFactory.xml" />
17
	<import resource="classpath*:/eu/dnetlib/soap/cxf/applicationContext-eprbuilders.xml"/>
18
	<import resource="classpath*:/gr/uoa/di/driver/app/springContext-lookupFactory.xml" />
19
	<import resource="classpath*:/gr/uoa/di/driver/app/springContext-lookupClients.xml" />
20
	<import resource="classpath*:/eu/dnetlib/enabling/hcm/springContext-hcmService.xml" />
21

    
22
	<import resource="classpath*:/eu/dnetlib/data/search/solr/springContext-searchService-solr.xml" />
23
	<import resource="classpath*:/eu/dnetlib/data/search/springContext-transformation.xml" />
24
	<import resource="classpath*:/eu/dnetlib/data/search/springContext-searchService.xml" />
25

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

    
46
				<value>classpath*:/eu/**/springContext-searchService-solr.properties</value>
47
				<value>classpath*:/eu/**/springContext-searchService.properties</value>
48
				<value>classpath*:/eu/**/springContext-transformation.properties</value>
49

    
50
				<value>classpath*:/uoa-override.properties</value>
51
				<value>classpath*:/dnet-override.properties</value>
52
			</list>
53
		</property>
54
	</bean>
55

    
56
	<context:annotation-config />
57
	<context:component-scan base-package="eu.dnetlib.data.search.web.api">
58
		<context:include-filter type="annotation"
59
								expression="org.springframework.web.bind.annotation.ControllerAdvice" />
60
	</context:component-scan>
61

    
62
	<import resource="./cxf.xml" />
63
</beans>
(1-1/5)