springboot引入外部jar包

来源:互联网 发布:华为天际通数据服务 编辑:程序博客网 时间:2024/04/30 04:37

两种方法引入外部jar包:

  1. 直接利用系统自带的build path里的方法加入外部jar包
  2. 在pom里引入外部jar包
    <dependency>      <groupId>Ice</groupId>      <artifactId>Ice</artifactId>      <version>1.0</version>      <scope>system</scope>      <systemPath>C:\Users\gmy\Desktop\test/wfx.proxy.uinv28-2.0.4-SNAPSHOT.jar</systemPath>    </dependency>
原创粉丝点击