gpt4 book ai didi

java.lang.ClassNotFoundException : org. reSTLet.service.TunnelService 命令行

转载 作者:行者123 更新时间:2023-11-30 04:13:53 25 4
gpt4 key购买 nike

我正在使用ReSTLet框架。

我正在尝试从使用 Eclipse 创建的 jar 文件运行我的项目,方法是:导出->可运行的 JAR 文件,然后选择选项将所需的库打包到生成的 jar 中。

但是,当我尝试在命令行中执行 jar 文件时,输入:

java -Djava.security.policy=Client.Policy -jar identiscopeRunnable.jar 

我得到以下信息:

Exception in thread "main" java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader.main(JarRsrcLoader.java:58)
Caused by: java.lang.NoClassDefFoundError: org/restlet/service/TunnelService
at rest.IdentiscopeServer.main(IdentiscopeServer.java:24)
... 5 more
Caused by: java.lang.ClassNotFoundException: org.restlet.service.TunnelService
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
... 6 more

我已经将从 ReSTLet Framework 下载的所有 jar 文件添加到我的项目中,所以我认为这不是它们的问题。有人对此有任何线索吗?

以防万一有人问起,IdentiscopeServer.java 的第 24 行是:

IdentiscopeServerApplication identiscopeServerApp = new IdentiscopeServerApplication();

IdentiscopeServerApplication 基本上执行以下操作:

@Override
public Restlet createInboundRoot() {
Router router = new Router(getContext());

//attaches the /tweet path to the TweetRest class
router.attach("/collectionPublic", CollectionPublicREST.class);
router.attach("/collectionPrivate", CollectionPrivateREST.class);
router.attach("/analysis", AnalysisREST.class);
return router;
}

最佳答案

将 jar 添加到 eclipse 项目不会将 jar 添加到命令行类路径。

java -cp <add your jars here separated by ';'(win) or ':'(linux) > -Djava.security.policy=Client.Policy -jar identiscopeRunnable.jar 

看看这是否有帮助。

关于java.lang.ClassNotFoundException : org. reSTLet.service.TunnelService 命令行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18900085/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com