Exception in thread “main” java.lang.NoClassDefFoundError: org/joda/time/ReadableInstant

后端 未结 2 997
北海茫月
北海茫月 2021-01-18 12:28

I built an executable jar using an ant script, the only external jar I used was joda-time 2.0. The ant build script \"seemed\" to work as I did not recieve any compile error

2条回答
  •  情歌与酒
    2021-01-18 13:10

    Presumably, your jar doesn't contain a manifest header telling Java to add the joda-time jar to the classpath. That's the only way to have other classpath entries when using java -jar. You could do this directly with the Ant manifest task, or there are probably multiple other ways to do it, including building it from your existing classpath.

    Alternately, try

    java -cp myapp.jar:joda-time-2.0.jar com.foo.YourMainClass
    

提交回复
热议问题