2.35.3.2. Camel REST DSL 経由の platform-http の使用
platform-http
コンポーネントで Camel REST DSL を使用できるようにするには、camel-quarkus-platform-http
に加えて camel-quarkus-rest
を pom.xml
に追加します。
<dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-rest</artifactId> </dependency>
その後、Camel REST DSL を使用できます。
rest() .get("/my-get-endpoint") .route() .setBody(constant("Hello from /my-get-endpoint")) .endRest() .post("/my-post-endpoint") .route() .setBody(constant("Hello from /my-post-endpoint")) .endRest();