jar包的术语背景:
- normal jar: 普通的jar,用于项目依赖引入,不能通过java -jar xx.jar执行,一般不包含其它依赖的jar包。
- fat jar: 也叫做uber jar,是一种可执行的jar(executable jar),既包含自己代码中的class ,也包含第三方依赖的jar。
- 不可执行,但包含第三方依赖的jar包,避免生成的jar与第三方引入后出现依赖版本冲突。
POM文件中的内置属性(Maven预定义可以直接使用):
${basedir} 项目根目录
${version} 表示项目版本;
${project.basedir} 同${basedir};
${project.version} 表示项目版本,与${version}相同;
${project.build.directory} 构建目录,缺省为target;
${project.build.sourceEncoding} 表示主源码的编码格式;
${project.build.sourceDirectory} 表示主源码路径;
${project.build.finalName} 表示输出文件名称;
${project.build.outputDirectory} 构建过程输出目录,缺省为target/classes
1. 第一类需求: 生成单个fat jar
使用springboot提供的maven打包插件spring-boot-maven-plugin即可,方便快捷,pom文件的配置如下:
<dependency> <groupId>cn.henry.testgroupId> <artifactId>local_testartifactId> <version>1.0.0version> <scope>systemscope> <systemPath>${basedir}/src/main/local_lib/local_test.jarsystemPath> dependency> <build> <plugins> <plugin> <groupId>org.springframework.bootgroupId> <artifactId>spring-boot-maven-pluginartifactId> <configuration> <includeSystemScope>trueincludeSystemScope> configuration> plugin> plugins> build>
2. 第二类需求: 启动项和依赖包分离的fat jar
项目文件和依赖的jar包分离,因为引用的jar变动较少,项目发布时只需替换项目jar包或class即可,使用常规maven打包插件, maven-jar-plugin, maven-dependency-plugin,输出为可执行的jar和lib包,pom文件的配置如下:
<dependency> <groupId>cn.henry.testgroupId> <artifactId>local_testartifactId> <version>1.0.0version> <scope>systemscope> <systemPath>${basedir}/src/main/local_lib/local_test.jarsystemPath> dependency> <build> <plugins> <plugin> <groupId>org.apache.maven.pluginsgroupId> <artifactId>maven-dependency-pluginartifactId> <executions> <execution> <id>copy-dependenciesid> <phase>packagephase> <goals> <goal>copy-dependenciesgoal> goals> <configuration> <outputDirectory>${project.build.directory}/liboutputDirectory> configuration> execution> executions> plugin> <plugin> <groupId>org.apache.maven.pluginsgroupId> <artifactId>maven-jar-pluginartifactId> <configuration> <archive> <manifest> <addClasspath>trueaddClasspath> <classpathPrefix>lib/classpathPrefix> <mainClass>cn.henry.study.FileMessageServermainClass> manifest> <manifestEntries> <Class-Path>lib/local_test-1.0.0.jarClass-Path> manifestEntries> archive> configuration> plugin> plugins> build>
3. 第三类需求: 提供给第三方使用的,包含所有依赖的普通jar
解决项目jar中依赖与引用方jar包版本冲突的问题,提高jar包的易用性和独立性,缺点是打出来的包较大,jar包内置依赖不透明。 使用maven打包插件maven-shade-plugin,pom文件的配置如下:
在cmd中切换到local_test.jar包所在的目录,执行 mvn install:install-file "-DgroupId=cn.henry.frame" "-DartifactId=local_test" "-Dversion=1.0.0" "-Dpackaging=jar" "-Dfile=local_test.jar" 其中: -DgroupId 为maven依赖的groupId -DartifactId 为maven依赖的artifactId -Dversion 为maven依赖的version -Dfile 为local_test.jar包的文件名 引入安装后的local_test.jar包,maven依赖如下: <dependency> <groupId>cn.henry.framegroupId> <artifactId>local_testartifactId> <version>1.0.0version> dependency> <build> <plugins> <plugin> <groupId>org.apache.maven.pluginsgroupId> <artifactId>maven-shade-pluginartifactId> <executions> <execution> <phase>packagephase> <goals> <goal>shadegoal> goals> <configuration> <createDependencyReducedPom>falsecreateDependencyReducedPom> <filters> <filter> <artifact>*:*artifact> <excludes> <exclude>META-INF/*.SFexclude> <exclude>META-INF/*.DSAexclude> <exclude>META-INF/*.RSAexclude> excludes> filter> filters> configuration> execution> executions> plugin> plugins> build>
4. 第四类需求: 提供给第三方使用的,仅包含项目代码的普通jar
通用模式,如果项目中有使用到第三方依赖,需要提供说明,否则会直接报class not found exception。 使用maven打包插件maven-jar-plugin,pom文件的配置如下:
<plugin> <groupId>org.apache.maven.pluginsgroupId> <artifactId>maven-jar-pluginartifactId> <configuration> <archive> <manifest> <addClasspath>trueaddClasspath> manifest> archive> configuration> plugin>
注意打包插件的版本选择,尽量使用高版本,官方可能修复了已存在的问题,按项目的需求选取打包方式。
maven的打包插件官网: http://maven.apache.org/plugins
插件打包的原理:读取xml配置,组装成规范的jar文件
jar规范可以阅读oracle的官方文档:https://docs.oracle.com/javase/8/docs/technotes/guides/jar/jar.html
重点关注的部分: JAR文件格式中META-INF目录下的MANIFEST.MF文件,用于定义扩展和包相关的数据。主属性: Manifest-Version(MF文件版本号), Main-Class(包含main方法的类), Class-Path(执行这个jar包时的ClassPath,第三方依赖)
Manifest-Version: 1.0 Main-Class: test.Main Class-Path: ./ ./lib/commons-collections-3.2.jar ./lib/commons-lang-2.3.jar ./lib/commons-logging-1.1.jar
打包的一般做法是扫描项目所依赖的包,按照规范拼接Class-Path的value值,写入MF文件。但这种做法不够灵活,框架通常会从MF文件获取自定义信息,使用classloader动态加载依赖的jar包,并控制文件的合并,过滤等规则。