1、配置文件
default_city_code: 350600000000
2、代码
@Component
public class MapUtils {
static String defaultAreaCode;
@Value("${default_city_code}")
public void setDefaultCityCode(String cityCode){
defaultAreaCode = cityCode;
}
}
就可以了,使用时直接MapUtils.defaultAreaCode;
注意set方法不能是static