Java Web Services/JAXB - Abstract superclass

后端 未结 3 1587
滥情空心
滥情空心 2020-12-30 09:32

I have a package with JAXB annotated classes with an abstract superclass. I want to use this superclass in web service interface, so I can pass any of subclasses as a parame

相关标签:
3条回答
  • 2020-12-30 09:48

    I had a similar Problem, which the comments above didn't solve. The Blogsposts linked from InstantiationException during JAXB Unmarshalling (abstract base class, with @XmlSeeAlso concrete sub class) were very helpful for me to understand what I was really doing.

    0 讨论(0)
  • 2020-12-30 09:49

    I was solving the same issue today. I found EclipseLink MOXy JAXB implementation as working, but there is no separate jar or maven module available (it is only as whole eclipselink.jar, which is huge) Finally I tried the latest JAXB version (2.2.2) and surprisingly it worked well.

    maven config:

        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
            <version>2.2.2</version>
        </dependency>
        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-impl</artifactId>
            <version>2.2.2</version>
        </dependency>
    
    0 讨论(0)
  • 2020-12-30 10:04

    Have you specified the concrete implementation in your web service request? This works fine for me:

    Abstract base class:

    @XmlSeeAlso({Foo.class, Bar.class})
    public abstract class FooBase
    {
      ...
    }
    

    Implementation class:

    @XmlRootElement(name = "foo")
    public class Foo extends FooBase
    {
      ...
    }
    

    Web service method:

    public String getFoo(@WebParam(name = "param") final FooBase foo)
    {
      ...
    }
    

    Request:

    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.example/">
       <soapenv:Header/>
       <soapenv:Body>
          <ser:getFoo>
             <param xsi:type="ser:foo" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
          </ser:getFoo>
       </soapenv:Body>
    </soapenv:Envelope>
    
    0 讨论(0)
提交回复
热议问题