我在执行应用程序时遇到以下异常。在这里,我创建了一个类abcTextArea,它扩展了TextArea,并且具有文本框的其他属性。但是我变得异常例外。你能帮我么?

05:16:57,606 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/abcHtml]] (http-/10.1.3.22:8080-1) Exception while dispatching incoming RPC call: java.lang.NoClassDefFoundError: Could not initialize class com.abc.client.ui.abcTextArea
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) [rt.jar:1.7.0_55]
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) [rt.jar:1.7.0_55]
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) [rt.jar:1.7.0_55]
at java.lang.reflect.Constructor.newInstance(Constructor.java:526) [rt.jar:1.7.0_55]

最佳答案

该类在运行时不在您的类路径中。 http://javarevisited.blogspot.com/2011/06/noclassdeffounderror-exception-in.html

08-06 04:35
查看更多