幸運的是,我從來沒有在命令行中調用java
太多的工作,直到現在,我通常使用類似Maven,Ant或者在servlet容器中運行的東西。我剛剛使用匯編:單個目標將我的Maven應用程序編譯成一個JAR,並從命令行運行嚴重問題。Java Classpath Woes
這裏就是我試圖做的事:
export JAVA_CLASSPATH="`pwd`:/path/to/remote/libs/"
java -cp "${JAVA_CLASSPATH}" -jar groupId-artifactId-version-jar-with-dependencies.jar com.my.main.Class
這與下面的錯誤而失敗:
Exception in thread "main" java.lang.NoClassDefFoundError: com/remote/lib/IServer
Caused by: java.lang.ClassNotFoundException: com.remote.lib.IServer
at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
Could not find the main class: com.my.main.Class. Program will exit.
的IServer
類是/path/to/remote/libs
目錄並沒有被發現。它似乎也無法找到主要的課程,這很奇怪。我究竟做錯了什麼?
IServer.class文件存儲在哪裏?在path/to/remote/libs的最上層?它可能需要位於/ path/to/remote/libs/com/my/main – Marvo