JAXB's simple binding mode changes the collection names to their plural version, for example. "Additional data" becomes "additional data". Is there any solution to change this behavior? I need the name and name of the Java field to match the name of the XSD field. My bindings file:
<?xml version="1.0" encoding="UTF-8"?> <bindings xmlns="http://java.sun.com/xml/ns/jaxb" xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" xsi:schemaLocation=" http://java.sun.com/xml/ns/jaxb http://java.sun.com/xml/ns/jaxb/bindingschema_2_0.xsd" version="2.1"> <globalBindings> <serializable uid="1" /> <xjc:simple/> </globalBindings> </bindings>
java java-metro-framework jaxb jaxb2
User123456789
source share