curl localhost:8080/<some name>
e.g.:
curl -XGET http://localhost:8080/Mohammad%20Hewedy
output:
Received: Person{name='MOHAMMAD HEWEDY'}
http > stringSupplier > upperCase > log
- http endpoint accept string and publish it to stringSupplier supplier, which put it in
upperCase.topic
destination. - an upperCase function, read the string from the
upperCase.topic
destination and convert it into person with upper case name and put it inlog.topic
destination. - a log consumer reads the person object from
log.topic
destination and log it to stdout.