Files
stream-applications/applications/processor/transform-processor
Soby Chacko f863db2af1 Adding repos/pluginRepos to apps generation
This might be a temporory solution to address some issues on the CI envrionment.
We will most likely remove the changes from this commit later on once the CI
issues are addressed
2020-08-13 12:00:42 -04:00
..
2020-06-30 11:57:00 +02: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 filter-processor-kafka-<version>.jar --spel.function.expression=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[]