@Value映射到静态属性

@Component
public class ParamConfig {
private static String factoryUrl;

public static String getFactoryUrl() {
return factoryUrl;
}

@Value("${external.factoryUrl}")
public void setFactoryUrl(String factoryUrl) {
ParamConfig.factoryUrl = factoryUrl;
}
}
posted @ 2020-01-15 10:32  1192371135  阅读(877)  评论(0编辑  收藏  举报