uoa-repository-manager-service/src/main/java/eu/dnetlib/repo/manager/config/Config.java

17 lines
580 B
Java

package eu.dnetlib.repo.manager.config;
import org.bouncycastle.util.Arrays;
import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;
import org.springframework.context.annotation.*;
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import java.io.IOException;
@Configuration
@ImportResource("classpath*:/gr/uoa/di/driver/app/springContext-commons.xml")
@PropertySource("application-compat.properties")
public class Config {
}