JDeveloper:AnnotatedNoClassDefFoundError
我在 JDeveloper 中创建了一个新的 Java 应用程序。该应用程序仅使用 Java
应用程序。不使用 Swing
和 ADF
技术。
我创建了一个带有静态 main 方法的新类。
当我尝试编译该项目时,会显示此错误:
Error: Exception thrown during compilation: oracle/classloader/util/AnnotatedNoClassDefFoundError
我试图在 Google 上找到对此的任何参考,但我看到的每个页面都讨论 ADF
。
有人知道如何解决这个问题吗?
编辑:类代码:
package wewe;
public class Class1 {
public Class1() {
}
public static void main(String[] args) {
Class1 class1 = new Class1();
}
}
I have created a new Java Application in JDeveloper. That application only uses the Java
application. No Swing
and no ADF
technologies are used.
I have created a new class with a static main method.
When I'm trying to compile the project, this error is shown:
Error: Exception thrown during compilation: oracle/classloader/util/AnnotatedNoClassDefFoundError
I'm trying to find on Google any reference of this, but each page that I see talks about ADF
.
Anybody knows how to fix that issue?
Edit: the class code:
package wewe;
public class Class1 {
public Class1() {
}
public static void main(String[] args) {
Class1 class1 = new Class1();
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来我没有正确安装JDK,JDeveloper也没有报告。现在一切正常了。
It seems that I didn't installed correctly the JDK, and JDeveloper didn't reported. Now all works.