6
從@ConfigurationProperties中刪除位置屬性spring-boot從@ConfigurationProperties中刪除位置屬性
有什麼替代方法?
我以前一直在使用它。
@ConfigurationProperties(locations = "a.yml")
從@ConfigurationProperties中刪除位置屬性spring-boot從@ConfigurationProperties中刪除位置屬性
有什麼替代方法?
我以前一直在使用它。
@ConfigurationProperties(locations = "a.yml")
這裏同樣的問題:我們有幾個YAML文件數百配置鍵的,他們每個人方便地映射到我們注入我們的業務邏輯bean是POJO。
我可以做升級到春季啓動1.5,並在同一時間讓我們的生產應用程序運行沒有太大的重構的最好的事情在這裏描述:http://fabiomaffioletti.me/blog/2016/12/20/spring-configuration-properties-handle-deprecated-locations/
或者,如果不適合你,你可以嘗試這種方式,即使需要更多的重構(刪除@ConfigurationProperties註釋),這也更簡單:http://fabiomaffioletti.me/blog/2017/02/09/spring-configuration-properties-locations-deprecation-another-approach/
這幾乎總結了替代方法:https://github.com/spring-projects/spring-boot/issues/6220 #issuecomment,228412077 – g00glen00b