使用maven profile实现多环境配置相关打包

项目开发需要有多个环境,一般为开发,测试,预发,正式4个环境,通过maven可以实现按不同环境进行打包部署,命令为:

mvn package -P dev

在eclipse中可以右击选项run configuration,输入上述命令。

PS:eclipse maven install和maven packege的区别在于前者除了打包到target外,还会install到本地仓库,这样其他引用的工程就可直接使用。

其中“dev“为环境的变量id, 可以自己定义, 我定义的名称为:dev,qa,pre,prod , 具体在pom.xml中的配置如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. ......
  5. <profiles>
  6. <profile>
  7. <id>dev</id>
  8. <properties>
  9. <env>dev</env>
  10. </properties>
  11. <activation>
  12. <activeByDefault>true</activeByDefault>
  13. </activation>
  14. </profile>
  15. <profile>
  16. <id>qa</id>
  17. <properties>
  18. <env>qa</env>
  19. </properties>
  20. </profile>
  21. <profile>
  22. <id>pre</id>
  23. <properties>
  24. <env>pre</env>
  25. </properties>
  26. </profile>
  27. <profile>
  28. <id>prod</id>
  29. <properties>
  30. <env>prod</env>
  31. </properties>
  32. </profile>
  33. </profiles>
  34. ......
  35. <build>
  36. <filters>
  37. <filter>config/${env}.properties</filter>
  38. </filters>
  39. <resources>
  40. <resource>
  41. <directory>src/main/resources</directory>
  42. <filtering>true</filtering>
  43. </resource>
  44. </resources>
  45. ......
  46. </build>
  47. </project>

1.profiles定义了各个环境的变量id

2.filters中定义了变量配置文件的地址,其中地址中的环境变量就是上面profile中定义的值

3.resources中是定义哪些目录下的文件会被配置文件中定义的变量替换,一般我们会把项目的配置文件放在src/main/resources下,像db,bean等,里面用到的变量在打包时就会根据filter中的变量配置替换成固定值

上一篇:利用神经网络算法的C#手写数字识别


下一篇:w3m 使用总结