Contact Us 1-800-596-4880

Creating Custom Transformers

Transformers in Mule are used to convert messages from one format to another or to manipulate the message information such as headers and attachments. Mule ESB also provides several standard transformers, including XML transformers (such as XML to Object, XSLT, and DOM to XML), encryption transformers that encrypt and decrypt data, compression transformers that compress and decompress data, and more. For a list of the standard transformers in Mule, see Using Transformers.

Since Mule 3 there are two ways to create a transformer.

  1. Use a Transformer Annotation on a method. This transformer will be automatically discovered and will be available to Mule’s automatic transformation engine. Transformers created this way are not usually referenced in your Mule configuration, instead it will be discovered based on the current type of message payload and the required type need (i.e. the parameter type of a service component method parameter).

  2. The traditional Mule way of creating custom transformers by extending AbstractTransformer.