I am creating XML with JAXB and I want to put double tags:
@XmlElement(name = "TaxFree") private double taxFreeValue;
When I set the value using setTaxFreeValue(4.5); in tags, showing <TaxFree>4.5<TaxFree>
Is it possible in JAXB to get this <TaxFree>4.500<TaxFree> without wrapping double in a string?
source share