6
カスタム例外をスローするメソッドを持つWebサービスがあります。@ApplicationException with Java 1.7
@WebMethod void someMethod(...) throws MyException
MyException
クラスは@ApplicationException
@ApplicationException
class public MyException extends Exception {...}
と注釈されている私は、WSDLを生成するためのmaven
、JDK 1.6
とjaxws-maven-plugin
を使用して、私のプロジェクトをビルドし、すべてがうまくいきました。
しかし、今、私はJDK 1.7
と同じことを行うたい、と今私はエラー
Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
java.lang.StackTraceElement does not have a no-arg default constructor.
this problem is related to the following location:
at java.lang.StackTraceElement
at public java.lang.StackTraceElement[] java.lang.Throwable.getStackTrace()
at java.lang.Throwable
at private java.lang.Throwable[] com.MyPackage.MyExceptionBean.suppressed
at com.MyPackage.MyExceptionBean
任意のアイデアを得ますか?異なる
JDK 1.6クラスMyExceptionBeanで
public class MyExceptionBean {
private String message;
のように生成されましたが、JDK 1.7
public class MyExceptionBean {
private String message;
private Throwable[] suppressed;
JAXWS-のmaven-pluginの
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxws-maven-plugin</artifactId>
<version>1.10</version>