blob: e1be0d2caae5e71c3b52e5e3137b9514f0c22c18 [file] [log] [blame]
apiVersion: camel.apache.org/v1
kind: Integration
metadata:
name: RestDsl
spec:
flows:
- rest-configuration:
component: "platform-http"
context-path: "/base"
port: 8081
- rest:
path: "/demo"
post:
- path: "/foo"
to: "direct:foo"
- path: "/bar"
to: "direct:bar"
get:
- path: "/getFoo"
to: "direct:foo"
- path: "/getBar"
to: "direct:foo"
- from:
uri: 'direct:foo'
steps:
- log: '${body}'
- log: '${headers}'
- setBody:
constant: "Hello world"