总结
bootstrap.yml比application.yml具有更高的优先级。
bootstrap.yml是系统级的资源配置项,application.yml是用户级的资源配置项
package 包路径
@SpringBootApplication:
@SpringBootApplication : 是Sprnig Boot项目的核心注解,目的是开启自动配置https://blog.csdn.net/qq_28289405/article/details/81302498#t1@SpringBootApplication : 是Sprnig Boot项目的核心注解,目的是开启自动配置
@importResource:
用于导入Spring的配置文件,让配置文件里面的内容生效
@importResource( locations = {"classpath:applicationContext.xml"} )
启动配置路径: classpath:applicationContext.xml