spring 配置文件
system.properties
<context:property-placeholder
location="classpath*:/system.properties" ignore-unresolvable="true" />
private @Value("${ws.sleep}")
String sleep;
private @Value("${ws.times}")
String times;// 请求次数
system.properties
#最多重新获取3次
ws.times=0
#休眠两分钟
ws.sleep=1200000