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 using Spring 3 IOC and JAXB/JAX-WS in a WebService that I wrote. I am having a slight issue right now with data that must be rounded prior to returning to the consumer as they are not capable of handling the complete precision of the values.

To minimize the impact on the WS design and calculations, I chose to use an Jaxb XmlAdapter to round the values upon marshalling of my response. Everything works fine.

My issue now is that I would like to make it flexible. Ie: in some cases, I need to round to 2 decimal places, in some 4, etc.. Right now, I have to create a TwoDecimalAdapter and a FourDecimalAdapter and use the appropriate one where necessary in my model definitions. This means code duplication.

Is there anyway to create a generic Rounding Adapter, and pass a parameter to it? For instance, instead of:

@javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(value=FourDecimalRoundingAdapter.class,type=java.math.BigDecimal.class)

I'd like to be able to do something like:

@javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(value=new RoundingAdapter(4),type=java.math.BigDecimal.class)

Obviously that doesn't work as JAXB instantiates the adapter itself, but is there any technique I can use to pass parameters to the adapter? I'd love to be able to declare the rounding adapter in Spring and use it that way, but there again, I am unable to devise a reusable solution.

Thanks,

Eric

share|improve this question

1 Answer

I'm not sure how you hook this in with Spring, but below is a description of the JAXB mechanism that you can leverage.

If you have the following:

@javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(value=RoundingAdapter.class,type=java.math.BigDecimal.class)

Then using the standalone JAXB APIs you could do the following. The code below means whenever the RoundingAdapter is encountered, the specified instance should be used.

marshaller.setAdapter(new RoundingAdapter(4));
unmarshaller.setAdapter(new RoundingAdapter(4));

For More Information

share|improve this answer
1  
That would seem fairly straightforward in the context where I would be controlling the marshalling/unmarshalling myself. But in the context of JAX-WS where it magically does all the work for me without having to deal with it myself, how do I indicate to it that I want to use new RoundingAdapter(4)? I never instantiate any marshallers/unmarshallers with JAX-WS.... – Eric B. Jul 12 '12 at 16:20

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.