在Spring Boot應用程序中,可以通過在命令行中使用–spring.config.location參數來指定properties文件的位置。例如,可以使用以下命令來啟動Spring Boot應用程序并指定一個名為custom.properties的配置文件:
java -jar your-application.jar --spring.config.location=classpath:/custom.properties
這將告訴Spring Boot在類路徑下查找名為custom.properties的配置文件,并加載其中的配置。您還可以指定其他文件路徑,如絕對路徑或相對路徑,以便加載不同位置的配置文件。