java.lang.ClassFormatError:在类文件 javax/mail/MessagingException 中不是本机或抽象的方法中缺少代码属性
2022-09-01 16:56:33
我对javaee Bibliothek有一个maven依赖。
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0</version>
<scope>provided</scope>
</dependency>
我在一些类中遇到了Eclipse中的错误。
java.lang.ClassFormatError: Absent Code attribute in method that is not native or abstract in class file javax/mail/MessagingException
我添加了javax.mail依赖项。
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.5</version>
</dependency>
它没有奏效。任何想法??