spring 读取properties配置

spring 配置文件
<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

你可能感兴趣的:(properties)