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

I am currently using Dozer to map to sets of objects.

I have a situation where I need to use a custom converter to map a String to TypeA.

The way I convert TypeA to a String depends on the type of Object TypeA is a member of.

Specifically TypeA has 2 fields lets call them prefix and postfix. Sometimes I need to split the String by a space, or dash or slash. That character to split on is defined in the parent of TypeA.

Is there a way to do this in Dozer with custom converters? I need to go up the chain...

Thanks in advance for any help.

share|improve this question
So far I'm thinking that I'll have to do a post-processor to clean up the destination objects... – ballmw Sep 9 '10 at 17:32

1 Answer

up vote 0 down vote accepted

So you should map a String to the parent of TypeA. In your xml file, to get to the "prefix" and "postfix" you would type, parent.TypeA.prefix or parent.TypeA.postfix. Hope this helps.

share|improve this answer

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.