From 24a93263b0fc6189737f9a4832b2f5585b2809a8 Mon Sep 17 00:00:00 2001 From: Antonis Lempesis Date: Fri, 8 Oct 2021 22:36:25 +0000 Subject: [PATCH] loading default properties --- src/main/java/eu/dnetlib/repo/manager/config/Config.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/eu/dnetlib/repo/manager/config/Config.java b/src/main/java/eu/dnetlib/repo/manager/config/Config.java index d9fedf9..57eb1bc 100644 --- a/src/main/java/eu/dnetlib/repo/manager/config/Config.java +++ b/src/main/java/eu/dnetlib/repo/manager/config/Config.java @@ -7,7 +7,7 @@ import org.springframework.context.annotation.PropertySources; @Configuration @ImportResource("classpath*:/gr/uoa/di/driver/app/springContext-commons.xml") -@PropertySource("classpath*:/gr/**/springContext-*.properties") -@PropertySource("classpath*:/eu/**/springContext-*.properties") +@PropertySource(value = "classpath*:/gr/**/springContext-*.properties", ignoreResourceNotFound = true) +@PropertySource(value = "classpath*:/eu/**/springContext-*.properties", ignoreResourceNotFound = true) public class Config { }