@value
Posted 适AT
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@value相关的知识,希望对你有一定的参考价值。
配置文件的书写
valm.DlUrl=http://14.168.55.203:5199/FOSSecMngTemplate?wsdl
vals.DlUrl=http://14.168.55.203:5199/FOSSecQryTemplate?wsdl
在Spring配置文件这中配置
<!-- 加载配置属性文件 --> <context:property-placeholder ignore-unresolvable="true" location="classpath:resources.properties" /> <!-- 将配置文件数据加载Spring中,使用@Value可以访问,如访问ip.proper属性,使用("#{syspros[‘ip.proper‘]}")--> <util:properties id="syspros" location="classpath:sys.properties"/>
在类中使用@avlue取值
@Value("#{syspros[‘valm.DlUrl‘]}")
public String valmUrl;
@Value("#{syspros[‘vals.DlUrl‘]}")
public String valsUrl;
这样valmUrl和valsUrl就可以拿到http://14.168.55.203:5199/FOSSecMngTemplate?wsdl 和 http://14.168.55.203:5199/FOSSecQryTemplate?wsdl的值
以上是关于@value的主要内容,如果未能解决你的问题,请参考以下文章
[RxJS] Implement RxJS `mergeMap` through inner Observables to Subscribe and Pass Values Through(代码片段
[RxJS] Implement RxJS `switchMap` by Canceling Inner Subscriptions as Values are Passed Through(代码片段
Choose unique values for the 'webAppRootKey' context-param in your web.xml files! 错误的解决(代码片段
Failed to convert property value of type ‘java.lang.String‘ to required type ‘int‘ for property(代码片段