Files
stream-applications/applications/processor/transform-processor
GitHub Actions Bot 251e1fb998 Release 4.0.0-M2
2023-05-25 11:30:19 +00:00
..
2023-05-25 11:30:19 +00:00
2022-01-15 11:38:29 -05:00

//tag::ref-doc[]
= Transform Processor

Transformer processor allows you to convert the message payload structure based on a SpEL expression.

Here is an example of how you can run this application.

`java -jar transform-processor-kafka-<version>.jar --spel.function.expression=payload.toUpperCase()`

Change kafka to rabbit if you want to run it against RabbitMQ.


=== Payload

The incoming message can contain any type of payload.

== Options

//tag::configuration-properties[]
$$spel.function.expression$$:: $$A SpEL expression to apply.$$ *($$String$$, default: `$$<none>$$`)*
//end::configuration-properties[]

//end::ref-doc[]