Spring MVC 通過 @PropertySource和@Value 來讀取配置檔案

FrankYou發表於2017-05-22

在這篇文章中,我們會利用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==強大+便捷+高效

相關文章