Files
Chris Bono 7487dc8f61 Link to function catalog docs for config props (#526)
Prior to this commit, each app documented its available config props
in its README.adoc. Now that the functions have been moved to the
function catalog, these inline docs are replaced w/ a link to the
respective function catalog docs.

See #524
2024-03-28 10:44:08 -05:00

26 lines
660 B
Plaintext

//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.
[source,shell]
....
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
https://github.com/spring-cloud/spring-functions-catalog/tree/main/function/spring-spel-function#configuration-options[See function catalog for configuration options]
//end::ref-doc[]