Skip to content

Latest commit

 

History

History
 
 

camel-example-rest-swagger

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Camel Rest Swagger example

This example shows how to call a REST service defined using Swagger specification with the help of Camel Rest Swagger component.

The example is a standalong Spring Boot application that acts as a REST client, you can run simply by issuing:

$ mvn spring-boot:run

Or by packaging it and running it using java CLI:

$ mvn package
$ java -jar target/camel-example-rest-swagger-*.jar

The example by default uses the PetStore demo hosted on swagger.io and invokes the getInventory operation. You can make it call any API that you have Swagger specification for and any operation with simple arguments, for instance this retrives a pet from the PetStore demo with ID 9584:

$ java -jar target/camel-example-rest-swagger-*.jar \
    --swagger=http://petstore.swagger.io/v2/swagger.json \
    --operation=getPetById \
    --petId=9584

More information

You can find more information about Apache Camel at the website: http://camel.apache.org/