Spring MVC 通過 @PropertySource和@Value 來讀取配置文件


在這篇文章中,我們會利用Spring的@PropertySource和@Value兩個注解從配置文件properties中讀取值。先來段java代碼:

@Component
@PropertySource(value = {"classpath:common.properties", "classpath:abc.properties"})
public class Configs {

    @Value("${connect.api.apiKeyId}")
    public String apiKeyId;

    @Value("${connect.api.secretApiKey}")
    public String secretApiKey;

    public String getApiKeyId() {
        return apiKeyId;
    }

    public String getSecretApiKey() {
        return secretApiKey;
    }
}

我們來具體分析下:

1、@Component注解說明這是一個普通的bean,在Component Scanning時會被掃描到並被注入到Bean容器中;我們可以在其它引用此類的地方進行自動裝配。@Autowired這個注解表示對這個bean進行自動裝配。 比如:

@Controller
public class HomeController {

    @Autowired
    private Configs configs;
}

2、@PropertySource注解用來指定要讀取的配置文件的路徑從而讀取這些配置文件,可以同時指定多個配置文件;

3、@Value("${connect.api.apiKeyId}")用來讀取屬性key=connect.api.apiKeyId所對應的值並把值賦值給屬性apiKeyId;

4、通過提供的get方法來獲取屬性值,如:

@Controller
public class HomeController {

    @Autowired
    private Configs configs;
    
    private void decrytCardInfo(AtomRequest req) throws Exception {
        req.setCardNo(ChipherUtils.desDecrypt(ChipherUtils.decodeBase64(req.getCardNo()), configs.getCardKey(), Consts.CHARSET_UTF8));
    }
}

總結:

@Component+@PropertySource+@Value==強大+便捷+高效


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM