profile

时间:2023-03-08 15:55:50
profile

  项目开发中,使用git最为版本控制工具,往往会建立开发分支、测试分支和生产分支。

  各个分支的数据库url,所依赖的接口url可能不同,直接配置的话,在合并分支时往往出现冲突。使用profile可以有效解决这个问题。

  maven的pom文件支持profile,yml文件也支持profile。

  独立jar包进行单元测试时,可以在test的resource文件夹下新建测试用的properties

  

<context:property-placeholder location="classpath*:url.properties"
ignore-unresolvable="true" /> 通过设置ignore-unresolvable="true",可以时其他项目引用该jar时,无法解析改properties而报错。