Tomáš Kraus
Tomáš Kraus
There should be a possibility to specify code, which JAXB would call after an object was unmarshalled (after all fields were set, so that method could use them). It is...
An external java->xsd binding file may be needed to: a. provide multiple ways to serialize/deserialize a single set of classes by generating different XML schemas. b. apply customizations to code...
Issue 22: mapping : Containment vs. reference The following two approaches have been discussed in the expert group prior to the F2F. 1\. JAXB 2.0 provides mechanisms which can be...
Following extract is from the minutes of the Feb 24, 2004 EG conference call: b. support for mixed content * not a lot of use cases for supporting mixed content...
Enhance JAXB to allow validation based on annotations, without requiring a schema. One of the benefits of JAXB 2 is that a schema is not required; annotating Java classes alone...
I have three enhancement suggestions for @XmlSeeAlso. 1\. Allow @XmlSeeAlso to be applied to a package via package-info.java. This will help greatly in decoupling base classes from their subclasses. 2\....
Hi, I need to serialize some EJB3 entities which have and numeric java.lang.Long id. The identifier of an entity is annotated with @Id for JPA ant with @XmlId but on...
The Customization property JavaType/hasNsContext is not supported. I did not check, whether this property is still in the specification, but it was in the specification for JAXB 1, and its...
I'd love to specify a stylesheet for an @XmlRootElement without having to mess around with the marshaller. For instance, it would be great to have something like: @XmlStylesheet(type="text/css" href="stylesheet.css") That...
If I want to unmarshal an XML document on to a class that doesn't have the @XmlRootElement annotation, then I can use unmarshaller.unmarshal(source, Class) to tell it which type to...