• Java项目使用自定义的公共单元(Maven管理)


    (一)前言

    我们用C++,Pascal语言的时候不存在这个问题。
    如果需要引用公用的单元,只需要include/uses一下,并不需要在意公共单元的代码在哪里。

    而Java项目,要求代码必须在项目内部。
    导致公共单元代码被拷贝到每个类似项目的目录下。

    难以统一维护,同时也生成了大量的重复代码。

    所以需要:

    1. 将公共单元作为一个单独的项目,打成jar包。
    2. 其它项目用依赖的方式引入这个jar包。

    (二)制作公共单元(Jar)

    这步比较简单,可以从一个可执行的项目开始修改。
    仅需保留公共单元代码,去掉主类的代码和打包配置。
    pom.xml 例子如下:

    
    <project xmlns="http://maven.apache.org/POM/4.0.0"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0modelVersion>
        <groupId>my.pub.utilsgroupId>
    
        <artifactId>my-public-utilsartifactId>
        <name>我的公共单元name>
        <version>1.0.1version>
    
        <properties>
            <project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
        properties>
    
        <dependencies>
            <dependency>...公共依赖1...dependency>
            <dependency>...公共依赖2...dependency>
        dependencies>
    
        <build>
            <resources>
                <resource>
                    <directory>src/main/resourcesdirectory>
                    <filtering>truefiltering>
                resource>
            resources>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.pluginsgroupId>
                    <artifactId>maven-resources-pluginartifactId>
                    <version>3.3.0version>
                    <configuration>
                        <delimiters>@delimiters>
                        <useDefaultDelimiters>falseuseDefaultDelimiters>
                    configuration>
                plugin>
                <plugin>
                    <groupId>org.apache.maven.pluginsgroupId>
                    <artifactId>maven-compiler-pluginartifactId>
                    <version>3.10.1version>
                    <configuration>
                        <source>8source>
                        <target>8target>
                    configuration>
                plugin>
            plugins>
        build>
    project>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49

    用Maven打包后,
    生成了文件:my-public-utils-1.0.1.jar
    放置在:PublicJava 目录中。

    (三)项目使用自定义的公共单元

    现在需要将上面章节生成的jar包加入到其它项目的依赖中。

    简单办法,可以将公共单元包加入到Maven的本地仓库中。
    或者某些情况下,我们需要 😄手动管理这个公共单元的依赖:

    (3.1)手动管理自定义依赖项目

    PS:这个例子没有用到Spring Boot之类的框架。

    需要将下面的内容加入到pom.xml段。

            <dependency>
                <groupId>my.pub.utilsgroupId>
                <artifactId>my-public-utilsartifactId>
                <version>1.0.1version>
                <scope>systemscope>
                <systemPath>/path/my-public-utils-1.0.1.jarsystemPath>
            dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    (3.2)修改maven-assembly-plugin

    还需要修改pom.xml中的maven-assembly-plugin部分:

    中先找到:
    org.apache.maven.plugins
    maven-assembly-plugin

    在同级层次中注释掉:

                    <configuration>
                    	......
                        
                        
                        
                    configuration>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    再加入assembly.xml配置:

                    <executions>
                        <execution>
                        	......
                            <configuration>
                                
                                <descriptors>
                                    <descriptor>src/assembly/assembly.xmldescriptor>
                                descriptors>
                            configuration>
                        execution>
                    executions>                        
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    (3.2)添加assembly.xml文件

    在:项目/src/assembly/目录下添加assembly.xml文件,
    内容如下:

    <assembly>
        <id>jar-with-dependenciesid>
        <formats>
            <format>jarformat>
        formats>
        <includeBaseDirectory>falseincludeBaseDirectory>
        <dependencySets>
            
            <dependencySet>
                <outputDirectory>/outputDirectory>
                <useProjectArtifact>trueuseProjectArtifact>
                <unpack>trueunpack>
                <scope>runtimescope>
            dependencySet>
            
            <dependencySet>
                <outputDirectory>/outputDirectory>
                <useProjectArtifact>trueuseProjectArtifact>
                <unpack>trueunpack>
                <scope>systemscope>
            dependencySet>
        dependencySets>
    assembly>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23

    (3.4)整体结构和例子

    整个项目的结构类似:
    在这里插入图片描述

    完整的pom.xml例子如下:

    
    <project xmlns="http://maven.apache.org/POM/4.0.0"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0modelVersion>
        <groupId>com.acgroupId>
    
        <name>我的程序名称name>
        <artifactId>myidartifactId>
        <version>3.39.09version>
    
        <dependencies>
            
            <dependency>
                <groupId>my.pub.utilsgroupId>
                <artifactId>my-public-utilsartifactId>
                <version>1.0.1version>
                <scope>systemscope>
                
                <systemPath>${pom.basedir}/../../../PublicJava/my-public-utils-1.0.1.jarsystemPath>
            dependency>
    
            <dependency>...我的依赖1...dependency>
    		<dependency>...我的依赖2...dependency>
    
            
            <dependency>
                <groupId>org.junit.jupitergroupId>
                <artifactId>junit-jupiter-apiartifactId>
                <version>5.9.0version>
                <scope>testscope>
            dependency>
        dependencies>
    
        <properties>
            <project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
        properties>
    
        <build>
            <resources>
                <resource>
                    <directory>src/main/resourcesdirectory>
                    <filtering>truefiltering>
                resource>
            resources>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.pluginsgroupId>
                    <artifactId>maven-resources-pluginartifactId>
                    <version>3.3.0version>
                    <configuration>
                        <delimiters>@delimiters>
                        <useDefaultDelimiters>falseuseDefaultDelimiters>
                    configuration>
                plugin>
                <plugin>
                    <groupId>org.apache.maven.pluginsgroupId>
                    <artifactId>maven-compiler-pluginartifactId>
                    <version>3.10.1version>
                    <configuration>
                        <source>8source>
                        <target>8target>
                    configuration>
                plugin>
                <plugin>
                    <groupId>org.apache.maven.pluginsgroupId>
                    <artifactId>maven-jar-pluginartifactId>
                    <version>3.2.2version>
                    <configuration>
                        <archive>
                            <manifest>
                                <mainClass>com.ac.ClassNamemainClass>
                            manifest>
                        archive>
                    configuration>
                plugin>
                <plugin>
                    <groupId>org.apache.maven.pluginsgroupId>
                    <artifactId>maven-assembly-pluginartifactId>
                    <version>3.4.2version>
                    <configuration>
                        <archive>
                            <manifest>
                                <mainClass>com.ac.ClassNamemainClass>
                            manifest>
                            <manifestEntries>
                                <Class-Path>.Class-Path>
                            manifestEntries>
                        archive>
                        
                        
                        
                    configuration>
                    <executions>
                        <execution>
                            <id>make-assemblyid>
                            <phase>packagephase>
                            <goals>
                                <goal>singlegoal>
                            goals>
                            <configuration>
                                
                                <descriptors>
                                    <descriptor>src/assembly/assembly.xmldescriptor>
                                descriptors>
                            configuration>
                        execution>
                    executions>
                plugin>
            plugins>
        build>
    project>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
  • 相关阅读:
    请问 前端小程序如何做多端。比如有司机端和用户端。
    纯前端 excel 导出
    gitlab访问报错: Whoops, GitLab is taking too much time to respond
    技术选型Rust——事后分析
    软考复习 -- 计算机网络
    知识点:PCB线路板布线都有哪些诀窍?
    小众调度器
    math_求和号的性质(变界)
    Android Camera2 SessionConfiguration介绍和使用
    探秘C语言数组:解锁高效数据管理与多维空间编程技巧"
  • 原文地址:https://blog.csdn.net/ddrfan/article/details/126585348