@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;
}
}

猜你喜欢

转载自www.cnblogs.com/liangmm/p/12195421.html
今日推荐