在Spring Boot中,可以通過以下方式來指定配置文件:
spring.config.location=classpath:/custom-config.properties
其中,classpath表示類路徑,在這里表示resources目錄下,custom-config.properties為自定義的配置文件名。
java -jar myapp.jar --spring.config.location=file:/path/to/custom-config.properties
其中,/path/to/custom-config.properties為自定義的配置文件路徑。
@PropertySource("classpath:custom-config.properties")
@Configuration
public class AppConfig {
// Configuration code here
}
這樣就可以加載自定義的配置文件作為應用程序的配置。