java-tutorials/camel-api
Eugen Paraschiv f88d035000 alinging the module name, artifact id and folder name (and some minor cleanup) 2018-06-08 20:43:24 +03:00
..
src/main PR for BAEL-798 - Apache Camel with Spring Boot (#2280) 2017-07-21 00:40:13 +02:00
README.md Update README.md (#2822) 2017-10-22 20:46:03 +02:00
pom.xml alinging the module name, artifact id and folder name (and some minor cleanup) 2018-06-08 20:43:24 +03:00

README.md

Example for the Article on Camel API with SpringBoot

to start up, run: mvn spring-boot:run

them, do a POST http request to: http://localhost:8080/camel/api/bean

with the HEADER: Content-Type: application/json,

and a BODY Payload like {"id": 1,"name": "World"}

and we will get a return code of 201 and the response: Hello, World - if the transform() method from Application class is uncommented and the process() method is commented

or return code of 201 and the response: {"id": 10,"name": "Hello, World"} - if the transform() method from Application class is commented and the process() method is uncommented

Relevant articles: