我正在尝试运行一个简单的mapdb示例,但得到错误:
Exception in thread "main" java.lang.NoClassDefFoundError: kotlin/jvm/internal/Intrinsics
at org.mapdb.DBMaker.fileDB(DBMaker.kt)
at leechies.Truc.main(Truc.java:9)
Caused by: java.lang.ClassNotFoundException: kotlin.jvm.internal.Intrinsics
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)
... 2 more
我的课程:
package leechies;
import java.util.concurrent.ConcurrentMap;
import org.mapdb.DB;
import org.mapdb.DBMaker;
public class Truc {
public static void main(String[] args) {
DB db = DBMaker.fileDB("file.db").make();
ConcurrentMap map = db.hashMap("map").createOrOpen();
map.put("something", "here");
db.close();
}
}
我的pomx.xml
<dependencies>
<dependency>
<groupId>org.mapdb</groupId>
<artifactId>mapdb</artifactId>
<version>3.0.3</version>
</dependency>
我使用rigth点击运行 - &gt;以...运行 - &gt; java应用程序。
答案 0 :(得分:6)
kotlin-runtime
必须在classpath
,并与$ echo $CLASSPATH
核实。
或者您必须将kotlin-runtime
添加到maven,然后使用mvn compile assembly:single
在jar内部进行汇编,
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-runtime</artifactId>
<version>1.1.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>1.1.3</version>
<scope>compile</scope>
</dependency>
也需要附加到工件上,可以使用assembly-plugin
完成。
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>event.handlers.InventoryEventHandler</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
您可以通过
验证kotlin-runtime是否已添加到jar中$ jar -tf target/amz-wavelength-1.0-SNAPSHOT-jar-with-dependencies.jar | grep kotlin-runtime
META-INF/kotlin-runtime.kotlin_module
或
$ jar -tf target/amz-wavelength-1.0-SNAPSHOT-jar-with-dependencies.jar | grep "kotlin/jvm/internal/*"
答案 1 :(得分:2)
它会失败,因为你的类路径中没有必要的kotlin运行时jar。您必须运行一些命令来解决此错误。请参阅此链接获取命令: -
https://dzone.com/articles/exercises-in-kotlin-part-1-getting-started
答案 2 :(得分:1)
@prayagupd的答案对我有用。但是我认为值得一提的是,另一种选择是使用maven-shade-plugin而不是maven-assembly-plugin(将其放在pom.xml文件的build/plugins
部分中):
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
shade插件很好,因为它允许您排除重复的类。如果您必须使用任何一个插件,那么很高兴知道您不需要这两个插件。在我的快速测试中,构建时间和生成的jar文件大小几乎相同,但是Assembly插件(prayagupd建议)不会在构建输出中添加很多警告,因此我将继续。
答案 3 :(得分:0)
也许从maven运行你的类,它将添加所有必要的依赖项。