JAXB boolean handling oddities and JSF
- by finrod
There is a known bug in JAXB: https://jaxb.dev.java.net/issues/show_bug.cgi?id=733
JAXB does not properly generate boolean field getters and setters, this bug is left unfixed for backwards compatibility.
A JAXB plugin exists and will ensure that the following getters and setters for boolean fields are generated:
setXXX(Boolean value) is…