我正在尝试在我的Maven项目中安装和使用第三方罐子 第一个Jar是:
anthill3-client.jar中
这是他的结构:
├───com
│ └───urbancode
│ ├───anthill3
│ │ ├───command
│ │ ├───custom
│ │ ├───dashboard
│ │ ├───domain
│ │ └───wsviewer
│ ├───codestation2
│ │ ├───domain
│ │ └───server
│ ├───commons
│ │ ├───db
│ │ ├───logfile
│ │ └───util
│ ├───license
│ ├───persistence
│ │ └───collections
│ └───scripting
└───META-INF
我通过运行此命令安装它:
call mvn install:install-file -Dfile=anthill3-client.jar -DgroupId=com.urbancode -DartifactId=anthill3-client -Dversion=1.0 -Dpackaging=jar
在pom.xml中配置它:
<dependency>
<groupId>com.urbancode</groupId>
<artifactId>anthill3-client</artifactId>
<version>1.0</version>
</dependency>
并且能够通过导入一些类在我的代码中使用它:
import com.urbancode.anthill3.domain.persistent.PersistenceException;
import com.urbancode.anthill3.domain.security.AuthorizationException;
import com.urbancode.anthill3.main.client.AnthillClient;
import com.urbancode.anthill3.persistence.UnitOfWork;
import com.urbancode.anthill3.domain.project.*;
虽然不太合适,因为我得到了.ClassNotFoundException
:
Exception in thread "main" java.lang.NoClassDefFoundError: com/urbancode/devilfish/services/method/MethodCall
at Valor.CM.Tools.App.main(App.java:26)
Caused by: java.lang.ClassNotFoundException: com.urbancode.devilfish.services.method.MethodCall
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 1 more
我尝试通过安装缺少的Jar来修复它:
devilfish.jar
他的结构:
├───com
│ └───urbancode
│ ├───command
│ │ ├───shell
│ │ └───var
│ ├───commons
│ │ └───util
│ ├───devilfish
│ │ ├───client
│ │ ├───common
│ │ ├───server
│ │ └───services
│ └───plugin
└───META-INF
通过运行此命令安装它:
call mvn install:install-file -Dfile=devilfish.jar -DgroupId=com.urbancode -DartifactId=devilfish -Dversion=1.0 -Dpackaging=jar
并加入我的pom:
<dependency>
<groupId>com.urbancode</groupId>
<artifactId>devilfish</artifactId>
<version>1.0</version>
</dependency>
但是从Package导入类只是不起作用,我一直得到同样的异常。
我想这是因为我没有正确安装Jars。
我填写了-DgroupId
&amp; -DartifactId
基于对我有意义的事情,但我不确定我是否填写了正确的价值观。
答案 0 :(得分:0)
不确定你是如何运行你的项目的,但它在编译时没有问题,而且运行时间也没有,所以我猜你没有正确地构建你的jar。
为了打包带有依赖关系的jar,请按照:How can I create an executable JAR with dependencies using Maven?
进行操作<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>fully.qualified.MainClass</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
答案 1 :(得分:0)
打开devilfish.jar(使用压缩工具)并转到META-INF / maven / [几个包] /pom.xml。打开它的pom.xml并查找正确的组,工件名称和版本。然后使用适当的设置再次安装它。如果urbancode是您的公司,请为您的公司安装Artifactory或Nexus服务器,在那里发布文件并将此服务器添加到您的pom.xml。