前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >专栏 >通过idea打包java Maven项目 架包与全包

通过idea打包java Maven项目 架包与全包

原创
作者头像
有勇气的牛排
修改2023-01-15 21:39:49
修改2023-01-15 21:39:49
9120
举报

💖💖💖💖💖💖养成每日阅读好习惯, 每天进步, 超越昨天的自己💖💖💖💖💖💖 作者:有勇气的牛排🐮🐮🐮 愿景:输出体系化编程知识与技巧,助力软件行业发展与从业者学习减负,让编程产生更大价值。

很多小伙伴在学习Java的过程中,可能对Java Maven打包项目方法有点小迷惑,毕竟Java知识体系庞大,全背下来肯定是有点难度的,今天牛排在学习大数据的时候总结出了使用流程,再也不用背代码了,特此分享给大家。

有问题的小伙伴欢迎在文末评论,点赞、收藏是对我最大的支持!!!

1 仅架包

架包定义:指仅将代码打包到jar中,在运行的平台必须保证依赖。

方法:maven —> Lifecyle —> Clean —> Package

image.png
image.png

2 架包与全包(推荐)

全包定义:将maven项目中的依赖于代码都打为一个包。

方法:maven —> Plugins —> assembly —>assembly:assembly

项目配置

pom.xml

代码语言:html
复制
<?xml version="1.0" encoding="UTF-8"?>
<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.0</modelVersion>

    <groupId>groupId</groupId>
    <artifactId>azkaban_cs</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <!-- 引入打包插件 -->
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <appendAssemblyId>false</appendAssemblyId>
                    <descriptors>
                        <descriptor>assembly.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <!--    <dependencies>-->

    <!--        &lt;!&ndash;Lombok &ndash;&gt;-->
    <!--        <dependency>-->
    <!--            <groupId>org.projectlombok</groupId>-->
    <!--            <artifactId>lombok</artifactId>-->
    <!--        </dependency>-->

    <!--    </dependencies>-->


</project>

新建主目录文件:assembly.xml

代码语言:html
复制
<assembly xmlns:xsi="" xmlns="" xsi:schemaLocation="   ">
    <id>${project.version}</id>
    <formats>
        <format>dir</format>
        <format>tar.gz</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <baseDirectory>${build.directory}</baseDirectory>

    <fileSets>
        <fileSet>
            <directory>conf/</directory>
            <outputDirectory>${project.artifactId}/conf</outputDirectory>
        </fileSet>
        <fileSet>
            <directory>db/</directory>
            <outputDirectory>${project.artifactId}/db</outputDirectory>
        </fileSet>
        <fileSet>
            <directory>${build.directory}</directory>
            <includes>
                <include>*.jar</include>
            </includes>
            <excludes>
                <exclude>*sources.jar</exclude>
            </excludes>
            <outputDirectory>${project.artifactId}/lib</outputDirectory>
        </fileSet>
        <fileSet>
            <directory>bin/</directory>
            <outputDirectory>${project.artifactId}/bin</outputDirectory>
            <fileMode>754</fileMode>
            <lineEnding>unix</lineEnding>
        </fileSet>
    </fileSets>
</assembly>

开始打包

image.png
image.png

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1 仅架包
  • 2 架包与全包(推荐)
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档