spring boot獲取屬性檔案內容
spring boot屬性檔案有兩者:1、以.properties為字尾名; 2、以.yml為字尾名
@ConfigurationProperties(prefix = "ebay",locations = "classpath:business/ebay.properties")
表示接收ebay.properties 以ebay. 為頭的所有屬性資訊,指定自定義屬性檔案
@ConfigurationProperties(prefix="custom")
表示接收application.yml中的custom下面的屬性