大华sdk使用时遇到“java.lang.NoClassDefFoundError: com/sun/jna/Callback”的解决方法

1.核对版本

在这里插入图片描述

2.手动导入jar包

报错:
在这里插入图片描述
Connected to the target VM, address: '127.0.0.1:1391', transport: 'socket' dynamic file[ /win64/avnetsdk.dll ] not found in project.please ensure you need this library. dynamic file[ /win64/dhconfigsdk.dll ] not found in project.please ensure you need this library. dynamic file[ /win64/dhnetsdk.dll ] not found in project.please ensure you need this library. dynamic file[ /win64/dhplay.dll ] not found in project.please ensure you need this library. dynamic file[ /win64/ImageAlg.dll ] not found in project.please ensure you need this library. dynamic file[ /win64/Infra.dll ] not found in project.please ensure you need this library. dynamic file[ /win64/IvsDrawer.dll ] not found in project.please ensure you need this library. dynamic file[ /win64/StreamConvertor.dll ] not found in project.please ensure you need this library. dynamic file[ /win64/jninetsdk.dll ] not found in project.please ensure you need this library. load library: C:\Users\YCKJ\AppData\Local\Temp\dhnetsdk.dll

在这里插入图片描述

解决方案:http://t.zoukankan.com/jxldjsn-p-8111529.html(原文链接)
方式1:dependency 本地jar包 (用本方法成功解决)

 <dependency>
      <groupId>com.dahua</groupId>
      <artifactId>jna</artifactId>
      <version>1.0</version>
      <scope>system</scope> <!--system,类似provided,需要显式提供依赖的jar以后,Maven就不会在Repository中查找它-->
      <systemPath>${basedir}/libs/jna.jar</systemPath> <!--项目根目录下的lib文件夹下-->
 </dependency>

方式2:编译阶段指定外部lib

 <plugin>
 <artifactId>maven-compiler-plugin</artifactId>
 <version>2.3.2</version>
 <configuration>
 <source>1.8</source>
 <target>1.8</target>
 <encoding>UTF-8</encoding>
 <compilerArguments>
 <extdirs>lib</extdirs><!--指定外部lib-->
 </compilerArguments>
 </configuration>
 </plugin>
 

方式3:将外部jar打入本地maven仓库
cmd 进入jar包所在路径,执行以下命令

mvn install:install-file -Dfile=cloud.jar -DgroupId=com.hope.cloud -DartifactId=cloud -Dversion=1.0 -Dpackaging=jar

引入依赖

  <dependency>
    <groupId>com.hope.cloud</groupId>
    <artifactId>cloud</artifactId>
    <version>1.0</version>
  </dependency>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值