I am working with Dozer and it is mapping our JAXB objects that are coming from our WebService to business object that reside in the service layer of our application. In some particular cases I need to map codes in String values to human readable description in String values. Example: "FLT" maps to "FLAT" and "TRP" maps to "TRAP". I have a lot of these type mappings.
I am implementing a custom Dozer Converter by inheriting the DozerConverter and implementing the two abstract methods convertTo() and convertFrom(). Within these I wanted to map "FLT" to "FLAT" and "FLAT" to "FLT" respectively but unforunatly Dozer does not call the correct convertTo() or convertFrom() methods correctly.
Does anyone else have this problem and could point me in the right direction? Thanks