Java 源码打包 降低jar大小

这里写目录标题

    • Idea maven 插件配置
    • pom.xml 配置
    • 启动技巧

Idea maven 插件配置

Java 源码打包 降低jar大小_第1张图片

pom.xml 配置

<build>
        <plugins>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
                
                <configuration>
                    <layout>ZIPlayout>
                    <includes>
                        <include>
                            <groupId>nothinggroupId>
                            <artifactId>nothingartifactId>
                        include>
                    includes>
                configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackagegoal>
                        goals>
                    execution>
                executions>
            plugin>
        plugins>
build>

启动技巧

java -Dloader.path="E:/Desktop/test/lib" -jar blade-system.jar
Java 源码打包 降低jar大小_第2张图片

你可能感兴趣的:(java,jar,开发语言,java,源码打包)