美文网首页
maven引入外部jar包

maven引入外部jar包

作者: 阿杰_96c5 | 来源:发表于2021-11-25 09:10 被阅读0次

    springboot引入外部jar包

    在maven中引入jar包

    <dependency>
        <groupId>com</groupId><!--随便填的-->
        <artifactId>fastjson</artifactId><!--jar包名字-->
        <version>1.2.8</version><!--版本号-->
        <scope>system</scope>
        <systemPath>${project.basedir}/src/main/resources/lib/fastjson-1.2.8.jar</systemPath><!--路径-->
    </dependency>
    <!--注意:重点是systemPath这个路径必须得是你jar的路径。其他的按照套路填就行,要求不是太严格。${project.basedir}只是一个系统自己的常量,不用管它-->
    

    设置maven-build 在pom.xml中设置

        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <!--这里写上main方法所在类的路径-->
                    <configuration>
                        <mainClass>com.test.addjar.AddjarApplication</mainClass>
                        <includeSystemScope>true</includeSystemScope><!--外部进行打包-->
                    </configuration>
                    <executions>
                        <execution>
                            <goals>
                                <goal>repackage</goal><!---->
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    

    相关文章

      网友评论

          本文标题:maven引入外部jar包

          本文链接:https://www.haomeiwen.com/subject/uwwwtrtx.html