springboot指定外置配置文件(没有docker)
在运行Spring Boot应用程序时,你可以通过-Dspring.config.location参数指定外部配置文件的位置。Spring Boot支持多种外部配置文件格式,包括.properties和.yml。
java -jar your-application.jar -Dspring.config.location=/path/to/your/config
替换 your-application.jar 为实际的Spring Boot可执行JAR文件名称,将 /path/to/your/config 替换为外部配置文件的实际目录。
也可以打包分离