blob: 15195abace60a9a40ca2459b061cc2f648a02cc6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.juick.rss.configuration;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.core.env.Environment;
import javax.inject.Inject;
/**
* Created by aalexeev on 11/12/16.
*/
@Configuration
@PropertySource("classpath:juick.conf")
public class RssAppConfiguration {
@Inject
private Environment env;
}
|