2021
01-26
01-26
详解Maven profile配置管理及激活profile的几种方式
为了实现不同环境构建的不同需求,这里使用到了profile。因为profile能够在构建时修改pom的一个子集,或者添加额外的配置元素。接下来介绍Maven中对profile的配置和激活。针对不同环境的profile的配置为了体现不同环境的不同构建,需要配置好不同环境的profile,代码如下:<profiles><profile><id>dev_evn</id><properties><db.driver>com.mysql.jdbc.Driver</db.driver><db.url>jdbc:mysql://l...
继续阅读 >