无法 运行 COMPS 应用程序。 ClassNotFoundException异常
Can't run COMPSs application. ClassNotFoundException
我正在学习 COMPS。到目前为止,一切都很好,但我只执行了手册中给出的示例。
现在我想 运行 我自己的测试应用程序,但我无法让它工作。我一定是遗漏了什么,但我看不出我做错了什么。
我的应用程序名为 App,有主 class App,另一个 class 中的界面名为 AppItf。当我尝试 运行 它使用 运行compss:
runcompss -d --classpath=$PWD/App.jar App
我收到以下消息:
Using default location for project file:
/opt/COMPSs/Runtime/scripts/user/../../configuration/xml/projects/project.xml
Using default location for resources file:
/opt/COMPSs/Runtime/scripts/user/../../configuration/xml/resources/resources.xml
----------------- Executing App --------------------------
[Loader] - There was an error when loading or executing your
application. 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:606)
at integratedtoolkit.loader.ITAppLoader.load(ITAppLoader.java:54)
at integratedtoolkit.loader.ITAppLoader.main(ITAppLoader.java:84) Caused
by: java.lang.ClassNotFoundException: AppItf
at java.net.URLClassLoader.run(URLClassLoader.java:366)
at java.net.URLClassLoader.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:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
at integratedtoolkit.loader.CustomLoader.loadClass(CustomLoader.java:56)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:195)
at integratedtoolkit.loader.total.ITAppModifier.modify(ITAppModifier.java:46)
... 6 more
Error running application
谁能帮我找出我做错了什么?
提前致谢!
在 runcompss 命令中,您必须指定 class 的完全限定域名。因此,如果此 class 有一个包,您必须将该包添加到 class 名称中。目前已丢失。
我正在学习 COMPS。到目前为止,一切都很好,但我只执行了手册中给出的示例。
现在我想 运行 我自己的测试应用程序,但我无法让它工作。我一定是遗漏了什么,但我看不出我做错了什么。
我的应用程序名为 App,有主 class App,另一个 class 中的界面名为 AppItf。当我尝试 运行 它使用 运行compss:
runcompss -d --classpath=$PWD/App.jar App
我收到以下消息:
Using default location for project file: /opt/COMPSs/Runtime/scripts/user/../../configuration/xml/projects/project.xml Using default location for resources file: /opt/COMPSs/Runtime/scripts/user/../../configuration/xml/resources/resources.xml
----------------- Executing App --------------------------
[Loader] - There was an error when loading or executing your application. 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:606) at integratedtoolkit.loader.ITAppLoader.load(ITAppLoader.java:54) at integratedtoolkit.loader.ITAppLoader.main(ITAppLoader.java:84) Caused by: java.lang.ClassNotFoundException: AppItf at java.net.URLClassLoader.run(URLClassLoader.java:366) at java.net.URLClassLoader.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:425) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at integratedtoolkit.loader.CustomLoader.loadClass(CustomLoader.java:56) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:195) at integratedtoolkit.loader.total.ITAppModifier.modify(ITAppModifier.java:46) ... 6 more
Error running application
谁能帮我找出我做错了什么?
提前致谢!
在 runcompss 命令中,您必须指定 class 的完全限定域名。因此,如果此 class 有一个包,您必须将该包添加到 class 名称中。目前已丢失。