java – 父pom和微服务器

前端之家收集整理的这篇文章主要介绍了java – 父pom和微服务器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
>我们有几个项目是微服务器,每个项目都是独立的(运行在单独的弹簧引导服务器上,露出休息服务,使用单独的数据库模式…)
>我们使用maven来管理依赖项.

有一个父母pom将每个微服务声明为模块是个好主意?因此,有助于管理常见的依赖关系(例如,在每个项目中使用lib servlet-api witch,将其全部删除并仅在父pom中声明)

解决方法

多模块父pom的“问题”是,没有复杂的配置文件,它会将模块锁定在相同的发行周期(假设您正在使用 Release Plugin,您应该).

我与Maven一起工作的方式是拥有一个声明为父母的pom:

>通用依赖项(记录API,JUnit等).
>常用插件
> dependencyManagement部分的所有依赖关系.
> pluginManagement部分中的所有插件.

每个模块将父pom作为其父对象,但父对此模块无关.

这样做的好处来自上面的最后两颗子弹,“管理”部分.在“管理”部分中包含的任何内容需要在要使用特定依赖项或插件的模块中重新声明.

例如,父母可能看起来像这样:

  1. <project>
  2.  
  3. <groupId>com.example</groupId>
  4. <artifactId>parent</artifactId>
  5. <version>1.0.00-SNAPSHOT</version>
  6.  
  7. ...
  8.  
  9. <dependencies>
  10.  
  11. <dependency>
  12. <groupId>org.slf4j</groupId>
  13. <artifactId>slf4j-api</artifactId>
  14. <version>1.7.7</version>
  15. </dependency>
  16.  
  17. <dependency>
  18. <groupId>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>4.11</version>
  21. <scope>test</scope>
  22. </dependency>
  23.  
  24. </dependencies>
  25.  
  26. <dependencyManagement>
  27.  
  28. <dependency>
  29. <groupId>commons-lang</groupId>
  30. <artifactId>commons-lang</artifactId>
  31. <version>2.6</version>
  32. </dependency>
  33.  
  34. <dependency>
  35. <groupId>commons-collections</groupId>
  36. <artifactId>commons-collections</artifactId>
  37. <version>2.1</version>
  38. </dependency>
  39.  
  40. </dependencyManagement>
  41.  
  42. <plugins>
  43.  
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <version>3.1</version>
  48. <configuration>
  49. <source>1.8</source>
  50. <target>1.8</target>
  51. </configuration>
  52. </plugin>
  53.  
  54. <plugins>
  55.  
  56. <pluginManagement>
  57.  
  58. <plugins>
  59.  
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-assembly-plugin</artifactId>
  63. <version>2.4</version>
  64. <configuration>
  65. <appendAssemblyId>false</appendAssemblyId>
  66. <descriptors>
  67. <descriptor>src/main/assembly/assembly.xml</descriptor>
  68. </descriptors>
  69. </configuration>
  70. <executions>
  71. <execution>
  72. <id>make-assembly</id>
  73. <phase>package</phase>
  74. <goals>
  75. <goal>single</goal>
  76. </goals>
  77. </execution>
  78. </executions>
  79. </plugin>
  80.  
  81. </plugins>
  82.  
  83. </pluginManagement>
  84.  
  85. </project>

并且模块可能如下所示:

  1. <project>
  2.  
  3. <parent>
  4. <groupId>com.example</groupId>
  5. <artifactId>parent</artifactId>
  6. <version>1.0.00-SNAPSHOT</version>
  7. </parent>
  8.  
  9. <groupId>com.example</groupId>
  10. <artifactId>module</artifactId>
  11. <version>1.0.00-SNAPSHOT</version>
  12.  
  13. <dependencies>
  14.  
  15. <dependency>
  16. <groupId>commons-lang</groupId>
  17. <artifactId>commons-lang</artifactId>
  18. </dependency>
  19.  
  20. </dependencies>
  21.  
  22. <plugins>
  23.  
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-assembly-plugin</artifactId>
  27. </plugin>
  28.  
  29. </plugins>
  30.  
  31. </project>

该模块将:

>依赖于org.slf4j:slf4j-api:1.7.7:compile,junit:junit:4.11:test and commons-lang:commons-lang:2.6:compile.>有插件org.apache.maven.plugins:maven-assembly-plugin:2.4

猜你在找的Java相关文章