Hey guys.
Got a quick question. Does anyone know how to let JAXB (marshall) render boolean fields as 1 and 0 instead of printing out "true" and "false"?
|
1
|
|
|
|
|
|
The adaptor class:
Usage:
|
||
|
|
|
JAXB provides a flexible way to customize your bindings. You simply have to write an XML file that will indicate how you want to bind your XML and Java types. In your case, you could use a
There might exist easier ways, maybe using DatatypeConverter, but I'm not enough aware of this subject to help you more ! |
||
|
|
|
|
I would probably create a type adapter for converting a boolean to an int. There are some examples in the JAXB users guide. |
||
|
|
|
|
Got any example or link to that? |
||
|
|
|
|
You can write a pair of parser/writers and define the property mapping in binding JAXB XML. |
||
|
|