Project

General

Profile

1
package eu.dnetlib.uoaadmintoolslibrary;
2

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

    
8
@Configuration
9
public class UoaAdminToolsLibraryConfiguration extends WebMvcConfigurerAdapter {
10
    @Bean
11
    public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
12
        return new PropertySourcesPlaceholderConfigurer();
13
    }
14
}
(2-2/2)