Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm migrating a project from jaxb 1.0 to jaxb 2.1 and I'm having problems with the datatype mapping.

I'm using the ant xjc binding compiler, and I've successfully configured the global bindings such that (for example) xs:date maps to java.util.Calendar.

However I'm getting generated methods which return Boolean, and I want boolean.

Here is the complex type:

<xs:element name="usage-auth-rate-charge">
    <xs:complexType>
        <xs:sequence>
            <xs:element name="service-id" type="xs:string"/>
            <xs:element name="pricepoint_custom_fields_required" type="xs:boolean" minOccurs="0"/>
        </xs:sequence>
    </xs:complexType>
</xs:element>

And the generated class looks like this:

public class UsageAuthRateCharge {
........
public Boolean isPricepointCustomFieldsRequired() {
    return pricepointCustomFieldsRequired;
}

The problem is that although boxing will work, if the supplied xml doesn't contain a value for pricepoint_custom_fields_required, the class's Boolean field is null, instead of false. So I get NullPointerExceptions when doing something like this:

methodWhichTakesPrimitiveBooleanArg(myUsageAuthRateChargeInstance.isPricepointCustomFieldsRequired());

because it tries to unbox the Boolean passed in - except it's null.

I can't change the schema, and I can't adjust all the client code to do the null checks.

I've set the optionalProperty tag in my binding.xml as follows:

  <globalBindings optionalProperty =  "primitive">

In the spec, it says: "If theattribute’s value is "primitive", it binds as it did in JAXB 1.0"

Yet this is clearly not happening.

How can I solve this problem?

share|improve this question
Here is a link to a related JAXB RI bug: java.net/jira/browse/JAXB-510. – Blaise Doughan Oct 23 '12 at 18:09
I cannot try it right now, but can you also set jaxb:globalBindings generateIsSetMethod="true" and see if it works? This would be indeed as in JAXB 1.0, as it was the mechanism used to handle your scenario (minOccurs=0 on a primitive). – Petru Gardea Oct 23 '12 at 18:37
Petru, as you say that generates a method like this: public boolean isSetPricepointCustomFieldsRequired() { return (this.pricepointCustomFieldsRequired!= null); } However I don't want this method, as I would have to change all my application code in order to use it. – mdarwin Oct 24 '12 at 7:43
@BlaiseDoughan, thanks, I saw that. I notice the ticket is marked as 'cannot reproduce'. In the comments somebody has suggested changing the xsd as a solution to the problem, which as we have seen, is avoiding the problem. – mdarwin Oct 24 '12 at 7:47
I've re-opened the ticket. See java.net/jira/browse/JAXB-926 I'm a bit disappointed that my migration to JAXB 2 has to stop because it doesn't conform to the spec. I've spent several days on this, and it's basically all been time wasted. – mdarwin Oct 24 '12 at 8:09
show 3 more comments

1 Answer

Try this...

<xs:element name="usage-auth-rate-charge">
    <xs:complexType>
        <xs:sequence>
            <xs:element name="service-id" type="xs:string"/>
        </xs:sequence>
        <xs:attribute name="chosen" type="xs:boolean" use="required"/>
    </xs:complexType>
</xs:element>

I found your question as I was looking how to do the exact opposite thing you were doing. I had a boolean attribute that would only generate code that had the attribute as a primitive boolean value. To make jaxb generate this attribute as a Boolean object instead of a boolean primitive, I just removed the use="required" portion of my attribute's definition in the xsd.

share|improve this answer
1  
Thanks. I have no doubt I can get this to work by tweaking the xsd like that. I could also set minOccurs="1" or default="false". However, I can't change the xsd, since it's in use by the existing (JAXB 1.0-based) code, and has been made public to clients. – mdarwin Oct 26 '12 at 7:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.