0
我有一個依賴的jar文件,我添加了它。有沒有辦法使用存在於依賴jar中的application.properties文件?從嵌入式jar中獲取應用程序屬性 - Spring Boot
我有一個依賴的jar文件,我添加了它。有沒有辦法使用存在於依賴jar中的application.properties文件?從嵌入式jar中獲取應用程序屬性 - Spring Boot
讓物業spring.config.location點到application.properties中 像
spring.config.location=classpath:com/company/whatever/application.properties
你可以在命令行中設置spring.config.location啓動應用程序
$ java -jar myproject.jar --spring.config.location=classpath:com/company/whatever/application.properties
時您可以在spring boot docs