2012-07-20 67 views
0

我在NetBeans 7.1中使用Jersey測試框架,其中我的JSON webservices託管在包含的Tomcat實例8084上。使用Maven和Tomcat在Netbeans上測試Jersey測試框架問題

我得到試圖運行任何測試時,出現以下異常:

Absent Code attribute in method that is not native or abstract in class file javax/mail/internet/ParseException 

任何想法?

回答

0

添加以下Maven片段:

<dependency> 
     <groupId>javax.mail</groupId> 
     <artifactId>mail</artifactId> 
     <version>1.4</version> 
     <scope>provided</scope> 
    </dependency> 

由於這會增加丟失的具體實現。