JAXB2 Basics is an open source project which implements plugins and tools for JAXB 2.x reference implementation.

learn more… | top users | synonyms

0
votes
1answer
139 views

Validate an XML generated using JAXB Classes (not by XSD)

If XML is generated by JAXB classes(not by XSD), I don't have an XSD to validate. How do I validate the XML? Does the JAXB does validation of XML automatically before it starts unmarshalling?
0
votes
1answer
375 views

xjc / jaxb2-commons interface binding issue, customization attached to the wrong place

I'm trying to add an interface using the jaxb2-basics artifact from the jaxb2_commons maven group. My pom.xml contains the following dependencies <dependency> ...
1
vote
1answer
96 views

JAXB Parsing of similar xml files

I have different XML returns that I want to parse with JAXB with annotated classes. Many of the XML files share a similar top structure and with the contents of an inner tag that can vary. Since we ...
1
vote
1answer
104 views

Jaxb Simplify Plugin

i try to use the simplify plugin to simplify the generated code. I have a defined type: <xsd:complexType name="typeWithReferencesProperty"> <xsd:choice maxOccurs="unbounded"> ...
0
votes
1answer
735 views

Edit JAXB generated annotation using annox and add namespace in param

I do have the following annotation in a JAXB generated class @XmlType(name = "MessageInfoType", propOrder = { "debugTraceBoolean", "clientHostnameString", "endUserIPAddress" }) Need to ...
0
votes
1answer
104 views

Need documentation for JAXB annox

Need documentation on JAXB annox through which i would like to know what all the attributes are set for ex in the below code...I would like to know the documentation to see what name, target, ...
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: ...
1
vote
1answer
1k views

JAXB unmarshalling Custom entities without annotation

We have an xml file which we need to unmarshall(convert into a Java Object). Now the Java object is of third party and I cannot annotate it for unmarshalling. Any idea as to how I can Unmarshal ...
2
votes
0answers
223 views

ClassNotFoundException with jaxb/annox and custom annotation

I'm a little stuck with an annotations usage scenario and I was hoping for your input. Given the following annotation (defined in the same project along with ExistingCustomerValidator class ) package ...
3
votes
1answer
2k views

Insert custom annotation in java 'field' using annotate plugin + JAXB (upon xsd -> java)

Use case: Wanna insert custom annotation to fields in java class generated by JAXB Problem: Using Annotate plugin + JAXB [1], am able to successfully insert custom annotations but they are getting ...
1
vote
3answers
1k views

Generating hashCode() and equals() when creating Java classes using Mojo Jaxb2 maven plugin

The code I'm working on is using jaxb2-maven-plugin from org.codehaus.mojo to generate Java classes from XSD schema. I'm looking for a way to automatically implement equals() and hashCode() methods ...
0
votes
2answers
156 views

How to tell only certain Classes in XSD to inheirt from a provided interface?

I have found some other questions that ask this in a different way, but none of the answers to those questions work. Either the sites they refer to are dead or they are not for JAXB2. What I need is ...
0
votes
1answer
3k views

maven-jaxb2-plugin isn't generating any output

I'm new to Maven, and am trying to use it to generate the Java classes from my XSD. My xsd file is in src/main/resources/xsd In dependencies I have this, but I don't think I need it as I'm using ...
1
vote
1answer
696 views

Can jaxb2-basics be configured to specify an interface for a type variable of a generic object?

I am using jax-ws's wsimport to generate java classes from WSDLs. I am using the jaxb2-basics plugin to create toString, equals, hashCode, copy, and merge methods. I would like for the generated ...
0
votes
1answer
241 views

JAXB2 Basics Mergeable plugin: Setting a custom Merge Strategy

I have successfully activated the JAXB2 Basics 'Mergeable' plugin in an ant script as follows: <target name="generate-sources" depends="clean"> <xjc destdir="${generated.src.dir}" ...
3
votes
3answers
4k views

How to use jaxb_commons plugins from maven

I'm trying to use a jaxb plugin to insert a interface into a choice element generating the classes from maven. The problem is that I can't seem to figure out how to do so from maven, the repository ...
16
votes
9answers
22k views

Generating a JAXB class that implements an interface

I'm currently using JAXB to generate java classes in order to unmarshall XML. Now I would like to create a new schema very similar to the first and have the classes that are generated implement the ...