0
我有一個簡單的類使用@PropertySource
像這樣彈簧自動創建屬性文件
@Component
@PropertySource(value = "file:${user.home}/.cooperp/app-conf.properties")
public class ApplicationProperties {
@Value("${mysql-location}")
private String mysqlLocation;
public String getMysqlLocation() {
return mysqlLocation;
}
public void setMysqlLocation(String mysqlLocation) {
this.mysqlLocation = mysqlLocation;
}
}
我知道代表的屬性文件,如果文件沒有找到一個可以添加ignoreResourceNotFound = true
這將使春季忽略這一情況並啓動了應用。
我想春天到創建文件它沒有找到,不會忽略或拋出異常。
您需要爲此編寫代碼,這不是'@ PropertySource'的任務/函數。 –
哪裏,在主要的方法? –
你爲什麼要這樣做? – PaulNUK