2017-12-07 18:57:12 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2019-02-16 11:04:41 +01:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2022-12-01 14:19:29 +01:00
|
|
|
xmlns:context="http://www.springframework.org/schema/context"
|
2019-02-16 11:04:41 +01:00
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
2022-12-01 14:19:29 +01:00
|
|
|
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
|
2018-01-24 11:11:57 +01:00
|
|
|
|
2017-12-07 18:57:12 +01:00
|
|
|
|
2019-02-16 11:04:41 +01:00
|
|
|
<context:annotation-config/>
|
|
|
|
<context:component-scan base-package="eu.dnetlib.repo.manager.service.*"/>
|
2017-12-07 18:57:12 +01:00
|
|
|
|
2019-02-16 11:04:41 +01:00
|
|
|
<bean class="eu.dnetlib.repo.manager.config.CascadingPropertyLoader"
|
|
|
|
id="propertyLoader">
|
|
|
|
<property name="order" value="2"/>
|
2017-12-07 18:57:12 +01:00
|
|
|
<property name="properties">
|
|
|
|
<bean class="eu.dnetlib.conf.WebappContextProperyFactory">
|
|
|
|
<property name="propertyFetcher">
|
2019-02-16 11:04:41 +01:00
|
|
|
<bean class="eu.dnetlib.conf.PropertyFetcher"/>
|
2017-12-07 18:57:12 +01:00
|
|
|
</property>
|
|
|
|
</bean>
|
|
|
|
</property>
|
2019-02-16 11:04:41 +01:00
|
|
|
<property name="ignoreUnresolvablePlaceholders" value="true"/>
|
2017-12-07 18:57:12 +01:00
|
|
|
<property name="locations">
|
|
|
|
<list>
|
|
|
|
<value>classpath*:/gr/**/springContext-*.properties</value>
|
|
|
|
<value>classpath*:/eu/**/springContext-*.properties</value>
|
|
|
|
|
2019-02-16 11:04:41 +01:00
|
|
|
<value>classpath*:/application.properties</value>
|
|
|
|
<value>classpath*:email-texts.properties</value>
|
2017-12-07 18:57:12 +01:00
|
|
|
|
2019-12-18 12:09:03 +01:00
|
|
|
<!-- <value>classpath*:dnet-site-wizard.properties</value>-->
|
|
|
|
<!-- <value>classpath*:dnet-site-override.properties</value>-->
|
|
|
|
<!-- <value>classpath*:dnet-wizard.properties</value>-->
|
|
|
|
<!-- <value>classpath*:dnet-override.properties</value>-->
|
|
|
|
<!-- <value>classpath*:dnet-validator-wizard.properties</value>-->
|
|
|
|
<!-- <value>classpath*:dnet-validator-override.properties</value>-->
|
|
|
|
<!-- <value>classpath*:dnet-site-force-override.properties</value>-->
|
|
|
|
<!-- <value>classpath*:dnet-force-override.properties</value>-->
|
2017-12-07 18:57:12 +01:00
|
|
|
</list>
|
|
|
|
</property>
|
|
|
|
</bean>
|
2018-01-16 16:45:47 +01:00
|
|
|
</beans>
|