Available as of Camel 2.14
The Spark-rest component allows to define REST endpoints using the Spark REST Java library using the Rest DSL.
![]() | Important |
|---|---|
Spark Java requires Java 8 runtime. |
Maven users will need to add the following dependency to their pom.xml for this component:
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spark-rest</artifactId>
<version>${camel-version}</version>
</dependency>|
Name |
Default Value |
Description |
|---|---|---|
|
|
|
get, post, put, patch, delete, head, trace, connect, or options. |
|
|
|
the content path which support Spark syntax. See further below for examples. |
|
|
|
accept type such as: 'text/xml', or 'application/json'. By default we accept all kinds of types. |
The path option is defined using a Spark REST syntax where you define the REST context path using support for parameters and splat. See more details at the Spark Java Route documentation.
The following is a Camel route using a fixed path
from("spark-rest:get:hello")
.transform().constant("Bye World");And the following route uses a parameter which is mapped to a Camel header with the key "me".
from("spark-rest:get:hello/:me")
.transform().simple("Bye ${header.me}");The Spark Request object is mapped to a Camel Message as a org.apache.camel.component.sparkrest.SparkMessage which has access to the raw Spark request using the getRequest method. By default the Spark body is mapped to Camel message body, and any HTTP headers / Spark parameters is mapped to Camel Message headers. There is special support for the Spark splat syntax, which is mapped to the Camel message header with key splat.
For example the given route below uses Spark splat (the asterisk sign) in the context path which we can access as a header form the Simple language to construct a response message.
from("spark-rest:get:/hello/*/to/*")
.transform().simple("Bye big ${header.splat[1]} from ${header.splat[0]}");Apache Camel provides a new Rest DSL that allow to define the REST services in a nice REST style. For example we can define a REST hello service as shown below:
return new RouteBuilder() {
@Override
public void configure() throws Exception {
rest("/hello/{me}").get()
.route().transform().simple("Bye ${header.me}");
}
}; <camelContext xmlns="http://camel.apache.org/schema/spring">
<rest uri="/hello/{me}">
<get>
<route>
<transform>
<simple>Bye ${header.me}</simple>
</transform>
</route>
</get>
</rest>
</camelContext>See more details at the Rest DSL.