Files
stream-applications/applications/processor/transform-processor
Soby Chacko 5ba0269a0b Preparing for 2021.0.0/3.1.0 apps
Spring Boot 2.5.0
Spring Cloud Stream 3.1.x
Spring Cloud Function 3.1.x
Spring Cloud 2020.0.x

Update code/deprecations
Fix tests
Update copyrights
2021-06-04 11:37:32 -04:00
..
2021-06-04 11:37:32 -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[]