Tagged Questions
1
vote
1answer
96 views
Apply external custom binding to included schema
I am using binding.xjb to apply custom binding to main.xsd. Works fine.
I want to break down main.xsd to include say "common.xsd" but doing that breaks my binding.xjb.
example: below is my ...
1
vote
1answer
419 views
JAXB XmlElementRef lookup into entire classpath
Hi can someone please explain how to solve following problem.
i have class structure like this..
public class RequestWrapper implements Seriallizable
{
private List<Request> requests = ...
1
vote
2answers
401 views
Jaxb XmlElementRef parent class tag
i need some help in jaxb XmlElementRef tag generation. I have classes like following,
@XmlRootElement(name = "Request")
public class BaseRequest
{
@XmlAttribute(name = "requestid")
private ...
0
votes
1answer
371 views
JAXB annox and getting error java.lang.NoSuchMethodError: com.sun.codemodel.JAnnotatable.annotations()Ljava/util/Collection
Hi I am using JAXB annox with ant xjc and getting the following error
C:_Dev\build\abcSupplierDomain.xml:479: java.lang.NoSuchMethodError:
...
3
votes
1answer
1k views
JAXB empty node in bindings
JAXB can't parse the bindings for this example:
<xs:element name="classA" type="classA" substitutionGroup="classSubA"/>
<xs:complexType name="complexClassA" mixed="true">
...
1
vote
1answer
2k views
Problem implementing GET REST service due to JAXBException: IllegalAnnotationExceptions
I am having a really strange problem implementing Java REST service. I am trying receive the following model:
@Data @EqualsAndHashCode(callSuper=false, of={"primaryKey"})
@Entity @Table(name = ...