spring boot 1.5.2 读取配置文件

@Component
@PropertySource("classpath:hive.properties")//与之前版本差异。
@ConfigurationProperties(prefix = "hive")
public class HiveConfig {

    public String host;

    public String url;

    public String getHost() {
        return host;
    }

    public void setHost(String host) {
        this.host = host;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }
}

猜你喜欢

转载自tongjun-zhou.iteye.com/blog/2378763