我的問題是這個問題的一個完全相同的副本: Spring application context external properties?如何注入的外部屬性在Spring上下文文件
這是我如何注入道具之前文件:
<util:properties id="smrProps" location="classpath:/spring/SomeProps.properties" />
但對於生活我不知道在location
中使用什麼時,我想注入一個屬性文件,它將與可運行的jar文件位於同一個目錄中。我知道classpath指向的地方,我的道具只有一層,所以我甚至試着假設classpath:/../SomeProps.properties
會在父文件夾中查找,但沒有運氣。
對於離如果罐子是:C:\temp\some.jar
和屬性文件是C:\temp\SomeProps.properties
如果some.jar是在溫度,然後SomeProps.properties也將在溫度。當然,我不能在位置使用C:\ temp \ SomeProps.properties
有人能指導我如何使用這個道具文件嗎?
如果您在使用Spring啓動時,您可以校驗H TTP://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html – shobull