Project

General

Profile

1
package eu.dnetlib.uoamonitorservice;
2

    
3
import org.apache.log4j.Logger;
4
import org.springframework.context.annotation.Bean;
5
import org.springframework.context.annotation.Configuration;
6
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;
7
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
8

    
9
@Configuration
10
public class UoaMonitorServiceConfiguration extends WebMvcConfigurerAdapter {
11
    private final Logger log = Logger.getLogger(this.getClass());
12

    
13
    @Bean
14
    public static PropertySourcesPlaceholderConfigurer  propertySourcesPlaceholderConfigurer() {
15
        return new PropertySourcesPlaceholderConfigurer();
16
    }
17
}
(3-3/3)