java获得properties文件属性的方法
上代码:
public class testSpring extends BaseTest{ private String url ; @Value("#{moblieProps[‘ds.demo.url‘]}") public void setUrl(String url) { this.url = url; } @Test public void testGetValue(){ System.out.println( url); } }
这是一个junit单元测试 用来获得里面的属性,其中set方法上面的注解来自于这个文件spring的xml
<util:properties id="moblieProps" location="classpath:config.properties" />
然后呢,key来自于config.properties
ds.demo.url=jdbc:oracle:thin:@192.168.12.150:1521:xxx
输出结果是这样的
jdbc:oracle:thin:@192.168.12.150:1521:xxx
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。