首页 > 代码库 > @Value() 使用方法
@Value() 使用方法
使用@Value():
1、该注解所在的类,必须要被扫描到:
<context:component-scan base-package="com.laiw"/>
备注:
1、在静态类,该注解无效
2、无效,使用properties进行取值:
public static final String GLOBAL_CONFIG_PATH = "file:" + System.getProperty("integral.config.path"); public static String getProperties(String key) { try { Properties p = PropertiesLoader.loadProperties(GLOBAL_CONFIG_PATH + "/integral.properties"); return p.getProperty(key); } catch (IOException e) { logger.error("错误", e, e.getMessage()); } return ""; } public static final String HR_VERSION = PropertiesLoader.getProperties("HRVersion"); public static final String BR_MERCHANT_CODE = PropertiesLoader.getProperties("bankMerchantCode");
@Value() 使用方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。