About 783,000 results
Open links in new tab
  1. Cannot use Jackson/JAXB after Spring upgrade - Stack Overflow

    Dec 11, 2023 · If you use the Jakarta version of JAXB, as used by Spring Boot 3, you should not use that jackson-module-jaxb-annotations module, you should use the jackson-module-jakarta …

  2. adding an annotation to a JAXB binding class from a schema

    11 Hi stackoverflow world, I want to specify in a XSD that a specific element can be used as a XmlRootElement by JAXB. I know how to add the annotation to the generated class: what I …

  3. Understanding JAXB @XmlRootElement annotation - Stack Overflow

    Feb 5, 2016 · I am using the tutorial here for understanding JAXB. When the writer comes to create the root of the document, the writer begins as below: //This statement means that class …

  4. Is it possible to have Jackson ObjectMapper to obey JAXB XML ...

    Sep 2, 2018 · I have studied - without any luck - how it would be possible to use jaxb annotations like @XmlElementWrapper to achieve this. Is there - for example - something I can do with …

  5. java - JAXB to JSON using JACKSON - Stack Overflow

    Jun 10, 2016 · In my application the JAXB output generates like: this.marshalOut(jaxb_Object, fileOutputStream); this is method call to the spring Object XML Mapping Marshallers that …

  6. java - Exception with Jackson-Module-Jaxb-Annotation when …

    Jun 12, 2024 · When I look at the maven repository for Jackson-Module-Jaxb-Annotations 2.17.1 it lists 3.0.1 as the appropriate version of jakarta.xml.bind-api but that doesn't have …

  7. xjc - jaxb2-basics-annotate plugin migration to jaxb 3.0 and jakarta ...

    Nov 17, 2022 · Federico, my forks of the JAXB2 projects, originally developed by the admirable Alexey Valikov (a.k.a. Highsource), support JAXB 3.0 and in particular the jakarta namespace. …

  8. How to make JAXB use custom namespace prefixes - Stack Overflow

    Jun 23, 2023 · When marshalling an object to XML with JAXB, it automatically generates namespace prefixes like ns2:. The system I have to communicate with unfortunately doesn't …

  9. java - How to use JAXB annotations at runtime - Stack Overflow

    Jul 29, 2013 · How to use JAXB annotations at runtime Asked 14 years, 1 month ago Modified 3 years, 2 months ago Viewed 6k times

  10. How do I use JAXB annotations with Spring RestTemplate?

    Jackson provides jackson-module-jaxb-annotations module for the XML databinding to work with JAXB annotations. However, I'm not sure how to setup the ObjectMapper being used by …