Top "Jaxb" questions

Java Architecture for XML Binding is the Java standard for working with XML as domain objects.

Java: How to resolve java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException

I have some code that uses JAXB API classes which have been provided as a part of the JDK in …

java jaxb java-9 java-11 java-10
How to generate JAXB classes from XSD?

I'm a total newbie with XML. I'm doing a Java EE project REST implementation and we return a lot of …

java jakarta-ee jaxb
javax.xml.bind.UnmarshalException: unexpected element (uri:"", local:"Group")

unexpected element (uri:"", local:"Group"). Expected elements are <{}group> Meet an exception when unmarshalling from xml JAXBContext jc = …

java xml jaxb
No @XmlRootElement generated by JAXB

I'm trying to generate Java classes from the FpML (Finanial Products Markup Language) version 4.5. A ton of code is generated, …

java jaxb xjc fpml
JSON Structure for List of Objects

I would like to know, whats the right structure for a list of objects in JSON. We are using JAXB …

java json jaxb
Use JAXB to create Object from XML String

How can I use the below code to unmarshal a XML string an map it to the JAXB object below? …

java xml jaxb
Convert Java object to XML string

Yes, yes I know that lots of questions were asked about this topic. But I still cannot find the solution …

java xml jaxb
Simple conversion between java.util.Date and XMLGregorianCalendar

I'm looking for a simple method of converting between java.util.Date and javax.xml.datatype.XMLGregorianCalendar in both directions. …

java xml datetime jaxb gregorian-calendar
Java 11 package javax.xml.bind does not exist

I'm trying to deserialize XML data into a Java content tree using JAXB, validating the XML data as it is …

java jakarta-ee jaxb java-11
javax.xml.bind.JAXBException: Class *** nor any of its super class is known to this context

I'm trying to pass a object via REST web service. Following are my classes explains the functionality that I need …

java rest jaxb jax-rs