当前位置:   article > 正文

Maven高级(二)--继承与版本锁定【案例:微服务备忘录的搭建】_maven 版本锁定

maven 版本锁定

引入.备忘录案例介绍 

我们要完成一个基于微服务架构的备忘录的demo,里面要求实现两个模块。

我们先根据要求确定项目架构

要实现这个构建微服务架构,首先要搭建这个项目的子项目以及依赖,这就需要用到Maven高级的内容。让我们结合这个案例学习Maven高级,并完成这个微服务备忘录Maven基础结构的搭建。

一.继承


1.目的:不同模块中经常需要用到同一个依赖,这样要在每个pom.xml中都引入对应的坐标,继承可以用来解决依赖引入重复的问题。
2.实现:我们可以在创建一个父工程,然后将多个模块来继承这个父工程。然后再将各个模块中都共有的依赖都提取到父工程中进行配置,只要子工程继承了父工程,依赖它也会继承下来,这样就无需在各个子工程中进行配置了。(其实就像aop,和注解提取一样,就是一种提取的思想,将子类共有的依赖提取到父类)


附:案例与具体操作


【1】案例介绍

有两个模块memorandum-auth,memorandum-event,他们都有一个相同的依赖--lombok,我们要将这个依赖提取到memorandum.

但是因为这是一个springboot项目,而所有的springboot项目都有一个统一的父工程,就是spring-boot-starter-parent。与java一样,Maven不支持多继承。那么怎么解决呢。
不支持多继承,但我们可以多重继承啊。


【2】具体操作

1.创建maven模块memorandum,该工程为父工程。

 删除多余的文件夹就只剩下.idea文件夹和pom.xml文件如下图所示

在其pom.xml的packaging标签中设置打包方式为pom.
[注:Maven打包方式:
 jar:普通模块打包,springboot项目基本都是jar包(内嵌tomcat运行)
 war:普通web程序打包,需要部署在外部的tomcat服务器中运行
 pom:父工程或聚合工程,该模块不写代码,仅进行依赖管理

完整pom.xml如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.7.5</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.flyingpig</groupId>
  13. <artifactId>memorandum</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. <packaging>pom</packaging>
  16. </project>


2.先创建用户模块,即鉴权模块memorandum-auth,并使其继承于父文件

(1)右键点击memorandum,点击新建,选择新模块,
因为我们要创建的是springboot项目,所以点击Spring Initializr创建项目。

点击创建

在子工程的pom.xml文件中,修改配置中的继承关系。

 修改xml中parent标签,指定它继承于memorandum父工程而不是原来的spring-boot-starter-parent。
原来是这样的:

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>3.1.5</version>
  5. <relativePath/> <!-- lookup parent from repository -->
  6. </parent>

 修改为

  1. <parent>
  2. <groupId>com.flyingpig</groupId>
  3. <artifactId>memorandum</artifactId>
  4. <version>1.0-SNAPSHOT</version>
  5. <relativePath>../pom.xml</relativePath>
  6. </parent>

完整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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.flyingpig</groupId>
  7. <artifactId>memorandum</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>memorandum-auth</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>memorandum-auth</name>
  14. <description>memorandum-auth</description>
  15. <properties>
  16. <java.version>17</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-test</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-maven-plugin</artifactId>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>

注:可能会发生比如说子工程的pom.xml文件被划掉
具体的解决方案:

idea的pom文件被划掉-CSDN博客

 注意:(1)在子工程中,配置了继承关系后,groupId是可以省略的,因为会自动继承父工程。
(2)relativePath指定父工程的pom文件的相对位置,如果不指定,将从本地仓库/远程仓库查找该工程。
../代表的上一级目录。

3.如法炮制创建事务模块,并指向父模块

还是一样修改子模块中pom.xml的parent标签、

  1. <parent>
  2. <groupId>com.flyingpig</groupId>
  3. <artifactId>memorandum</artifactId>
  4. <version>1.0-SNAPSHOT</version>
  5. <relativePath>../pom.xml</relativePath>
  6. </parent>


4.在父工程中配置各个工程共有依赖(子工程会自动继承依赖)

添加下面代码:

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.projectlombok</groupId>
  4. <artifactId>lombok</artifactId>
  5. <version>1.18.24</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.springframework.cloud</groupId>
  9. <artifactId>spring-cloud-dependencies</artifactId>
  10. <version>Hoxton.SR9</version>
  11. <type>pom</type>
  12. <scope>import</scope>
  13. </dependency>
  14. </dependencies>

如果项目是先设计好模块之后在开始创建模块,开发项目,所以实际中的项目结构比较晰:

可以看到memorandum-auth和memorandum-event是包含在memorandum包中的。如果是从原来是单体项目进行拆分的话会出现memorandum,memorandum-auth,memorandum-event三个包并列的情况。
另外需要注意的是对原来的单体服务进行拆分的话,我们提取依赖到父工程后需要将原来子工程中的依赖配置和依赖文件删除了。

二.版本锁定


1.场景
在开发中,还有一部分依赖,并不是各个模块都共有的,可能只有其中的一小部分模块中使用到了这个依赖。所以说还是有一部分依赖没有被提取,就是分散的。
如果依赖每次更换版本,我们都得找到这个项目中涉及到这个依赖的每一个模块,一个一个的更改,很容易出问题和遗漏。
这时我们就使用Maven的版本锁定功能来统一管理各个依赖的版本。
2.实现
可以在父工程的pom文件中通过<dependencyManagement>来统一管理依赖版本。
父工程:

  1. <!--统一管理依赖版本-->
  2. <dependencyManagement>
  3. <dependencies>
  4. <!--JWT令牌-->
  5. <dependency>
  6. <groupId>io.jsonwebtoken</groupId>
  7. <artifactId>jjwt</artifactId>
  8. <version>0.9.1</version>
  9. </dependency>
  10. </dependencies>
  11. </dependencyManagement>

子工程:

  1. <dependencies>
  2. <!--JWT令牌-->
  3. <dependency>
  4. <groupId>io.jsonwebtoken</groupId>
  5. <artifactId>jjwt</artifactId>
  6. </dependency>
  7. </dependencies>


面试题:<dependencyManagement> 与 <dependencies> 的区别是什么?
<dependencies> 是直接依赖,在父工程配置了依赖,子工程会直接继承下来。 
<dependencyManagement> 是统一管理依赖版本,不会直接依赖,还是需要在子工程中引入所需依赖,
只是此时就无需指定<version>版本号了。


3.我们之所以之前在springboot项目中很多时候引入依赖坐标不需要写<version>,是因为在springboot自己继承的父工程spring-boot-starter-parent中已经通过<dependencyManagement>对依赖的版本进行统一管理。

4.我们也可以通过自定义属性及属性引用的形式,在父工程中将依赖的版本号进行进一步统一管理。
例1:
 

  1. //自定义属性
  2. <properties>
  3. <lombok.version>1.18.24</lombok.version>
  4. </properties>
  5. //引用属性
  6. <dependency>
  7. <groupId>org.projectlombok</groupId>
  8. <artifactId>lombok</artifactId>
  9. <version>${lombok.version}</version>
  10. </dependency>

例2:
 

  1. <properties>
  2. <maven.compiler.source>11</maven.compiler.source>
  3. <maven.compiler.target>11</maven.compiler.target>
  4. <lombok.version>1.18.24</lombok.version>
  5. <jjwt.version>0.9.1</jjwt.version>
  6. <aliyun.oss.version>3.15.1</aliyun.oss.version>
  7. <jaxb.version>2.3.1</jaxb.version>
  8. <activation.version>1.1.1</activation.version>
  9. <jaxb.runtime.version>2.3.3</jaxb.runtime.version>
  10. </properties>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.projectlombok</groupId>
  14. <artifactId>lombok</artifactId>
  15. <version>${lombok.version}</version>
  16. </dependency>
  17. </dependencies>
  18. <!--统一管理依赖版本-->
  19. <dependencyManagement>
  20. <dependencies>
  21. <!--JWT令牌-->
  22. <dependency>
  23. <groupId>io.jsonwebtoken</groupId>
  24. <artifactId>jjwt</artifactId>
  25. <version>${jjwt.version}</version>
  26. </dependency>
  27. <!--阿里云OSS-->
  28. <dependency>
  29. <groupId>com.aliyun.oss</groupId>
  30. <artifactId>aliyun-sdk-oss</artifactId>
  31. <version>${aliyun.oss.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax.xml.bind</groupId>
  35. <artifactId>jaxb-api</artifactId>
  36. <version>${jaxb.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>javax.activation</groupId>
  40. <artifactId>activation</artifactId>
  41. <version>${activation.version}</version>
  42. </dependency>
  43. <!-- no more than 2.3.3-->
  44. <dependency>
  45. <groupId>org.glassfish.jaxb</groupId>
  46. <artifactId>jaxb-runtime</artifactId>
  47. <version>${jaxb.runtime.version}</version>
  48. </dependency>
  49. </dependencies>
  50. </dependencyManagement>

这样就可以将版本号进一步移动到父工程的properties中。

附:案例父工程完整的xml文件(只是示例,非最终项目)

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.7.RELEASE</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.flyingpig</groupId>
  13. <artifactId>memorandum</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. <packaging>pom</packaging>
  16. <properties>
  17. <maven.compiler.source>11</maven.compiler.source>
  18. <maven.compiler.target>11</maven.compiler.target>
  19. <lombok.version>1.18.24</lombok.version>
  20. <jjwt.version>0.9.1</jjwt.version>
  21. <aliyun.oss.version>3.15.1</aliyun.oss.version>
  22. <jaxb.version>2.3.1</jaxb.version>
  23. <activation.version>1.1.1</activation.version>
  24. <jaxb.runtime.version>2.3.3</jaxb.runtime.version>
  25. <spring-cloud.version>Hoxton.SR9</spring-cloud.version>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <version>${lombok.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-dependencies</artifactId>
  36. <version>${spring-cloud.version}</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. </dependencies>
  41. <!--统一管理依赖版本-->
  42. <dependencyManagement>
  43. <dependencies>
  44. <!--JWT令牌-->
  45. <dependency>
  46. <groupId>io.jsonwebtoken</groupId>
  47. <artifactId>jjwt</artifactId>
  48. <version>${jjwt.version}</version>
  49. </dependency>
  50. <!--阿里云OSS-->
  51. <dependency>
  52. <groupId>com.aliyun.oss</groupId>
  53. <artifactId>aliyun-sdk-oss</artifactId>
  54. <version>${aliyun.oss.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>javax.xml.bind</groupId>
  58. <artifactId>jaxb-api</artifactId>
  59. <version>${jaxb.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>javax.activation</groupId>
  63. <artifactId>activation</artifactId>
  64. <version>${activation.version}</version>
  65. </dependency>
  66. </dependencies>
  67. </dependencyManagement>
  68. </project>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/153800
推荐阅读
相关标签
  

闽ICP备14008679号