Skip to content

Latest commit

 

History

History
78 lines (50 loc) · 1.46 KB

README.adoc

File metadata and controls

78 lines (50 loc) · 1.46 KB

Camel Spark REST

Introduction

This example shows how to use Spark REST to define REST endpoints in Camel routes using the Rest DSL Spark requires Java 8, so you will need to use Java 8.

Introduction

This is an example that uses the rest-dsl to define a rest services which provides three operations

  • GET user/view/{id} - View user by id

  • GET user/list - List all users

  • PUT user/update - Updates or create a user

Build

You will need to compile this example first:

mvn compile

Run

To run the example type

mvn camel:run

The rest service can be accessed from the following url

curl http://localhost:8080/user

For example to get a user with id 123

curl http://localhost:8080/user/view/123

And to list all the users

curl http://localhost:8080/user/list

The rest services provides Swagger API which can be accessed from the following url in json or yaml format:

curl http://localhost:8080/api-doc/swagger.json
curl http://localhost:8080/api-doc/swagger.yaml

To stop the example hit ctrl+c

Help and contributions

If you hit any problem using Camel or have some feedback, then please let us know.

We also love contributors, so get involved :-)

The Camel riders!