我是靠谱客的博主 包容康乃馨,最近开发中收集的这篇文章主要介绍Springboot引入本地Jar包文件(亲测可用),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

  1. 在resources文件下新建lib文件夹,将jar包放到该文件夹下。

 

2.在pom.xml文件中这样引入:

 <dependency>
            <groupId>com.sqljdbc</groupId>
            <artifactId>com.sqljdbc4</artifactId>
            <version>4.0</version>
            <scope>system</scope>
         <systemPath>${project.basedir}/src/main/resources/lib/sqljdbc4.jar</systemPath>
</dependency>
  <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <includeSystemScope>true</includeSystemScope>
                </configuration>
            </plugin>
  

        </plugins>
    </build>

完成!

最后

以上就是包容康乃馨为你收集整理的Springboot引入本地Jar包文件(亲测可用)的全部内容,希望文章能够帮你解决Springboot引入本地Jar包文件(亲测可用)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部