@Value() 使用方法

Posted 自朗活

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@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() 使用方法的主要内容,如果未能解决你的问题,请参考以下文章

vue2.0 代码功能片段

Failed to convert property value of type ‘java.lang.String‘ to required type ‘int‘ for property(代码片段

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础

Python代码阅读(第40篇):通过两个列表生成字典

试图显示2个表

如何在伪造查看器中将自定义材质添加到片段