Spring Boot可以通過在application.properties文件中指定自定義properties文件的路徑來讀取自定義properties文件。首先,在application.properties文件中添加以下配置:
custom.properties.location=file:/path/to/your/custom.properties
然后在應用程序中使用@PropertySource注解指定自定義properties文件的路徑:
@PropertySource("file:${custom.properties.location}")
這樣Spring Boot就會在啟動時加載自定義properties文件,并可以通過@Value注解或Environment對象來讀取自定義properties文件中的配置。