springboot 启动会扫描一下的application.properties或者application.yml文件作为spring boot的默认配置文件:
-file:/config
-file:/
-classpath:/config
-classpath:/
优先级由高到低,高优先级会覆盖低优先级的相同配置,也会加载其他位置的配置文件,互补没有的配置组合起来。
我们也可以通过命令行参数的形式,改变springboot默认的配置文件:java -jar something.jar --spring.config.location=地址
这种适合打包完了,需要修改配置文件调试。