我在NetBeans 7.1中使用Jersey Test Framework,其中我的JSON Web服务托管在包含的Tomcat实例上:8084。
尝试运行任何测试时,我遇到以下异常:
Absent Code attribute in method that is not native or abstract in class file javax/mail/internet/ParseException
有什么想法吗?
答案 0 :(得分:0)
添加以下Maven片段:
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4</version>
<scope>provided</scope>
</dependency>
因为这增加了缺少的具体实现。