1. 程式人生 > >spring提供讀取配置檔案中的屬性註解@Value

spring提供讀取配置檔案中的屬性註解@Value

有時,當我們需要把專案中的properties檔案的屬性可以在專案中得到,spring就提供了一個註解@Value來讀取(前提是屬性檔案properties需要首先讓spring管理,即spring配置檔案中包含一下)

@Value("${屬性名}")          //屬性名要和properties中定義的屬性名一致

private String 屬性名(可以隨意起名)