简体   繁体   中英

JAXB: how to make JAXB NOT to unmarshal empty string to 0

I have a DTO class with a field such as:

@XmlAttribute
@NotNull
private Integer number = null;

I'm trying to unmarshal xml such as

...  number=""  ...

I need the nuber field to stay null, so that a validation exception would be thrown. Instead JAXB unmarshals it as 0. How can I make it to behave correctly ?

Arguable, it is behaving correctly. number="" does not mean null, it's an empty String, and JAXB is having to try and handle that correctly, and it decides that the closest thing to empty string for an Integer data type is zero. If you wanted a null , then the number attribute should be omitted altogether.

If you want to customise this behaviour, you need to write a subclass of javax.xml.bind.annotation.adapters.XmlAdapter which can handle the conversion between raw String and the boundtype (ie between String and Integer) in the way you want. You then wire up that adaptor by annotating the field with @XmlJavaTypeAdapter .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM