Author: buildbot
Date: Wed Aug  6 13:18:55 2014
New Revision: 918554

Log:
Production update by buildbot for camel

Modified:
    websites/production/camel/content/cache/main.pageCache
    websites/production/camel/content/rest-dsl.html

Modified: websites/production/camel/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/camel/content/rest-dsl.html
==============================================================================
--- websites/production/camel/content/rest-dsl.html (original)
+++ websites/production/camel/content/rest-dsl.html Wed Aug  6 13:18:55 2014
@@ -89,11 +89,10 @@
         return new RouteBuilder() {
             @Override
             public void configure() throws Exception {
-                rest("/say/hello")
-                    .get().to("direct:hello");
-                rest("/say/bye")
-                    
.get().consumes("application/json").to("direct:bye")
-                    .post().to("mock:update");
+                rest("/say")
+                    .get("/hello").to("direct:hello")
+                    
.get("/bye").consumes("application/json").to("direct:bye")
+                    .post("/bye").to("mock:update");
 
                 from("direct:hello")
                     .transform().constant("Hello World");
@@ -102,18 +101,16 @@
             }
         };
     }]]></script>
-</div></div><p>&#160;</p><p>This defines a REST service with the following url 
mappings:</p><div class="table-wrap"><table 
class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh">Uri template</th><th colspan="1" rowspan="1" 
class="confluenceTh">Verb</th><th colspan="1" rowspan="1" 
class="confluenceTh">Consumes</th></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">/say/hello</td><td colspan="1" rowspan="1" 
class="confluenceTd">get</td><td colspan="1" rowspan="1" 
class="confluenceTd"><em>all</em></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">/say/bye</td><td colspan="1" rowspan="1" 
class="confluenceTd">get</td><td colspan="1" rowspan="1" 
class="confluenceTd">application/json</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">/say/bye</td><td colspan="1" rowspan="1" 
class="confluenceTd">post</td><td colspan="1" rowspan="1" 
class="confluenceTd"><em>all</em></td></tr></tbody></table></div><p>Notice that 
in the REST service we
  route directly to a Camel endpoint using the to(). This is because the Rest 
DSL has a short-hand for routing directly to an endpoint using to(). An 
alternative is to embed a Camel route directly using route() - there is such an 
example further below.</p><h3 id="RestDSL-RestDSLwithXML">Rest DSL with 
XML</h3><p>The REST DSL supports the XML DSL also using either Spring or 
Blueprint. The example above can be define in XML as shown below:</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
+</div></div><p>&#160;</p><p>This defines a REST service with the following url 
mappings:</p><div class="table-wrap"><table 
class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh">Base Path</th><th colspan="1" rowspan="1" 
class="confluenceTh">Uri template</th><th colspan="1" rowspan="1" 
class="confluenceTh">Verb</th><th colspan="1" rowspan="1" 
class="confluenceTh">Consumes</th></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><span>/say</span></td><td colspan="1" rowspan="1" 
class="confluenceTd">/hello</td><td colspan="1" rowspan="1" 
class="confluenceTd">get</td><td colspan="1" rowspan="1" 
class="confluenceTd"><em>all</em></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">/say</td><td colspan="1" rowspan="1" 
class="confluenceTd">/bye</td><td colspan="1" rowspan="1" 
class="confluenceTd">get</td><td colspan="1" rowspan="1" 
class="confluenceTd">application/json</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">/say</td><td cols
 pan="1" rowspan="1" class="confluenceTd">/bye</td><td colspan="1" rowspan="1" 
class="confluenceTd">post</td><td colspan="1" rowspan="1" 
class="confluenceTd"><em>all</em></td></tr></tbody></table></div><p>Notice that 
in the REST service we route directly to a Camel endpoint using the to(). This 
is because the Rest DSL has a short-hand for routing directly to an endpoint 
using to(). An alternative is to embed a Camel route directly using route() - 
there is such an example further below.</p><h3 id="RestDSL-RestDSLwithXML">Rest 
DSL with XML</h3><p>The REST DSL supports the XML DSL also using either Spring 
or Blueprint. The example above can be define in XML as shown below:</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" 
type="syntaxhighlighter"><![CDATA[  &lt;camelContext 
xmlns=&quot;http://camel.apache.org/schema/spring&quot;&gt;
-    &lt;rest uri=&quot;/say/hello&quot;&gt;
-      &lt;get&gt;
+    &lt;rest path=&quot;/say&quot;&gt;
+      &lt;get uri=&quot;/hello&quot;&gt;
         &lt;to uri=&quot;direct:hello&quot;/&gt;
       &lt;/get&gt;
-    &lt;/rest&gt;
-    &lt;rest uri=&quot;/say/bye&quot;&gt;
-      &lt;get consumes=&quot;application/json&quot;&gt;
+      &lt;get uri=&quot;/bye&quot; consumes=&quot;application/json&quot;&gt;
         &lt;to uri=&quot;direct:bye&quot;/&gt;
       &lt;/get&gt;
-      &lt;post&gt;
+      &lt;post uri=&quot;/bye&quot;&gt;
         &lt;to uri=&quot;mock:update&quot;/&gt;
       &lt;/post&gt;
     &lt;/rest&gt;
@@ -130,7 +127,7 @@
       &lt;/transform&gt;
     &lt;/route&gt;
   &lt;/camelContext&gt;]]></script>
-</div></div><p>&#160;</p><h3 id="RestDSL-Usingpathprefixes">Using path 
prefixes</h3><p>The REST DSL allows to define path prefixes to make the DSL a 
bit more DRY. For example to define a customer path, we can set the prefix in 
rest("/customer") and then provide the past postfix in the verbs, as shown 
below:</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
+</div></div><p>&#160;</p><h3 id="RestDSL-Usingbasepath">Using base 
path</h3><p>The REST DSL allows to define base path to make the DSL a bit more 
DRY. For example to define a customer path, we can set the base path in 
rest("/customer") and then provide the uri templates in the verbs, as shown 
below:</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" 
type="syntaxhighlighter"><![CDATA[  rest(&quot;/customers/&quot;)
       .get(&quot;/{id}&quot;).to(&quot;direct:customerDetail&quot;)
       .get(&quot;/{id}/orders&quot;).to(&quot;direct:customerOrders&quot;)
@@ -138,7 +135,7 @@
 
 ]]></script>
 </div></div><p>&#160;</p><p>And using XML DSL it becomes:</p><div class="code 
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="theme: Default; brush: java; gutter: false" 
type="syntaxhighlighter"><![CDATA[    &lt;rest uri=&quot;/customers/&quot;&gt;
+<script class="theme: Default; brush: java; gutter: false" 
type="syntaxhighlighter"><![CDATA[    &lt;rest path=&quot;/customers/&quot;&gt;
       &lt;get uri=&quot;/{id}&quot;&gt;
         &lt;to uri=&quot;direct:customerDetail&quot;/&gt;
       &lt;/get&gt;
@@ -152,10 +149,22 @@
 </div></div>    <div class="aui-message success shadowed information-macro">
                             <span class="aui-icon icon-success">Icon</span>
                 <div class="message-content">
-                            <p>The REST DSL will take care of duplicate path 
separators when using path prefixes. In the example above the rest path prefix 
ends with a slash ( / ) and the verb starts with a slash ( / ). But Apache 
Camel will take care of this and remove the duplicated slash.</p>
+                            <p>The REST DSL will take care of duplicate path 
separators when using base path and uri templates. In the example above the 
rest base path ends with a slash ( / ) and the verb starts with a slash ( / ). 
But Apache Camel will take care of this and remove the duplicated slash.</p>
                     </div>
     </div>
-<h3 id="RestDSL-EmbeddingCamelroutes">Embedding Camel routes</h3><p>Each of 
the rest service becomes a Camel route,&#160;so in the first example we have 2 
x get and 1 x post REST service, which each become a Camel route. And we have 2 
regular Camel routes, meaning we have 3 + 2 = 5 routes in 
total.&#160;</p><p>There are two route modes with the Rest DSL</p><ul><li><span 
style="line-height: 1.4285715;">mini using a singular to</span></li><li><span 
style="line-height: 1.4285715;">embedding a Camel route using 
route&#160;</span></li></ul><p><span style="line-height: 1.4285715;">The first 
example is using the former with a singular to. And that is why we end up with 
3 + 2 = 5 total routes.</span></p><p><span style="line-height: 1.4285715;">The 
same example could use embedded Camel routes, which is shown 
below:</span></p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
+<p>It is not required to use both base path and uri templates. You can omit 
the bast path and define the base path and uri template in the verbs only. The 
example above can be defined as:</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="theme: Default; brush: java; gutter: false" 
type="syntaxhighlighter"><![CDATA[    &lt;rest&gt;
+      &lt;get uri=&quot;/customers/{id}&quot;&gt;
+        &lt;to uri=&quot;direct:customerDetail&quot;/&gt;
+      &lt;/get&gt;
+      &lt;get uri=&quot;/customers/{id}/orders&quot;&gt;
+        &lt;to uri=&quot;direct:customerOrders&quot;/&gt;
+      &lt;/get&gt;
+      &lt;post uri=&quot;/customers/neworder&quot;&gt;
+        &lt;to uri=&quot;direct:customerNewOrder&quot;/&gt;
+      &lt;/post&gt;
+    &lt;/rest&gt;]]></script>
+</div></div><h3 id="RestDSL-EmbeddingCamelroutes">Embedding Camel 
routes</h3><p>Each of the rest service becomes a Camel route,&#160;so in the 
first example we have 2 x get and 1 x post REST service, which each become a 
Camel route. And we have 2 regular Camel routes, meaning we have 3 + 2 = 5 
routes in total.&#160;</p><p>There are two route modes with the Rest 
DSL</p><ul><li><span style="line-height: 1.4285715;">mini using a singular 
to</span></li><li><span style="line-height: 1.4285715;">embedding a Camel route 
using route&#160;</span></li></ul><p><span style="line-height: 1.4285715;">The 
first example is using the former with a singular to. And that is why we end up 
with 3 + 2 = 5 total routes.</span></p><p><span style="line-height: 
1.4285715;">The same example could use embedded Camel routes, which is shown 
below:</span></p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" 
type="syntaxhighlighter"><![CDATA[    protected RouteBuilder 
createRouteBuilder() throws Exception {
         return new RouteBuilder() {
             @Override
@@ -185,7 +194,7 @@ restConfiguration().component(&quot;rest
 
 // use the rest DSL to define the rest services
 rest(&quot;/users/&quot;)
-    .post(&quot;new&quot;).type(UserPojo.class)
+    .post().type(UserPojo.class)
         .to(&quot;direct:newUser&quot;);]]></script>
 </div></div><p>Notice we use&#160;<code>type</code> to define the incoming 
type. We can optionally define an outgoing type (which can be a good idea, to 
make it known from the DSL and also for tooling and JMX APIs to know both the 
incoming and outgoing types of the REST services.). To define the outgoing 
type, we use&#160;<code>outType</code> as shown below:</p><div class="code 
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" 
type="syntaxhighlighter"><![CDATA[// configure to use restlet on localhost with 
the given port
@@ -194,7 +203,7 @@ restConfiguration().component(&quot;rest
 
 // use the rest DSL to define the rest services
 rest(&quot;/users/&quot;)
-    .post(&quot;new&quot;).type(UserPojo.class).outType(CountryPojo.class)
+    .post().type(UserPojo.class).outType(CountryPojo.class)
         .to(&quot;direct:newUser&quot;);]]></script>
 </div></div><p><span style="line-height: 1.4285715;"><br 
clear="none"></span></p><p><span style="line-height: 
1.4285715;">The&#160;</span><code style="line-height: 
1.4285715;">UserPojo</code><span style="line-height: 1.4285715;"> is just a 
plain pojo with getter/setter as shown:</span></p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" 
type="syntaxhighlighter"><![CDATA[public class UserPojo {
@@ -236,7 +245,7 @@ public class UserPojo {
 }
 
 ]]></script>
-</div></div><p>By having the JAXB annotations the POJO supports both json and 
xml bindings.</p><p>&#160;</p><h3 id="RestDSL-ConfiguringRestDSL"><span 
style="line-height: 1.5625;">Configuring Rest DSL</span></h3><p>The Rest DSL 
allows to configure the following options using a builder 
style</p><p>&#160;</p><div class="table-wrap"><table 
class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh">Option</th><th colspan="1" rowspan="1" 
class="confluenceTh">Default</th><th colspan="1" rowspan="1" 
class="confluenceTh">Description</th></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">component</td><td colspan="1" rowspan="1" 
class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd">The Camel Rest component to use for the REST transport, 
such as restlet, spark-rest. If no component has been explicit configured, then 
Camel will lookup if there is a Camel component that integrates with the Rest 
DSL, or if a&#160;<code>org.apache.camel.sp
 i.RestConsumerFactory</code>&#160;is registered in the registry. If either one 
is found, then that is being used.</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">scheme</td><td colspan="1" rowspan="1" 
class="confluenceTd">http</td><td colspan="1" rowspan="1" 
class="confluenceTd">The scheme to use for exposing the REST service. Usually 
http or https is supported</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">hostname</td><td colspan="1" rowspan="1" 
class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd">The hostname to use for exposing the REST 
service.</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">port</td><td colspan="1" rowspan="1" 
class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd">The port number to use for exposing the REST 
service.</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">restHostNameResolver</td><td colspan="1" rowspan="1" 
class="confluenceTd">localHostName<
 /td><td colspan="1" rowspan="1" class="confluenceTd">If no hostname has been 
explicit configured, then this resolver is used to compute the hostname the 
REST service will be using. The resolver supports <code>localHostName</code> or 
<code>localIp</code>.</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">bindingMode</td><td colspan="1" rowspan="1" 
class="confluenceTd">off</td><td colspan="1" rowspan="1" 
class="confluenceTd">Whether binding is in use. See further above for more 
details.</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">jsonDataFormat</td><td colspan="1" rowspan="1" 
class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd">Name of specific json data format to use. By default 
<code>json-jackson</code> will be used. <strong>Notice:</strong> Currently 
Jackson is what we recommend and are using for testing.</td></tr><tr><td 
colspan="1" rowspan="1" class="confluenceTd">xmlDataFormat</td><td colspan="1" 
rowspan="1" class="conflu
 enceTd">&#160;</td><td colspan="1" rowspan="1" class="confluenceTd">Name of 
specific XML data format to use. By default <code>jaxb</code> will be used. 
<strong>Notice:</strong> Currently only <code>jaxb</code> is 
supported.</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">componentProperty</td><td colspan="1" rowspan="1" 
class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd">Allows to configure as many additional properties. This is 
used to configure component specific options such as for&#160;<a shape="rect" 
href="restlet.html">Restlet</a>&#160;/&#160;<a shape="rect" 
href="spark-rest.html">Spark-Rest</a>&#160;etc.</td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd">endpointProperty</td><td colspan="1" 
rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd"><span>Allows to configure as many additional properties. 
This is used to configure endpoint specific options for <span>&#160;</span><a 
shape="r
 ect" href="restlet.html">Restlet</a><span>&#160;/&#160;</span><a shape="rect" 
href="spark-rest.html">Spark-Rest</a><span>&#160;etc.</span></span></td></tr><tr><td
 colspan="1" rowspan="1" class="confluenceTd">consumerProperty</td><td 
colspan="1" rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" 
rowspan="1" class="confluenceTd"><span>Allows to configure as many additional 
properties. This is used to configure consumer specific options for 
</span><span>&#160;</span><a shape="rect" 
href="restlet.html">Restlet</a><span>&#160;/&#160;</span><a shape="rect" 
href="spark-rest.html">Spark-Rest</a><span>&#160;etc.</span></td></tr><tr><td 
colspan="1" rowspan="1" class="confluenceTd">dataFormatProperty</td><td 
colspan="1" rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" 
rowspan="1" class="confluenceTd">Allows to configure as many additional 
properties. This is used to configure the data format specific options. For 
example set property prettyPrint to true to have json outputt
 ed in pretty mode.</td></tr></tbody></table></div><p>&#160;</p><p><span 
style="line-height: 1.4285715;">For example to configure to use the spark-rest 
component on port 9091, then we can do as follows</span></p><div class="code 
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+</div></div><p>By having the JAXB annotations the POJO supports both json and 
xml bindings.</p><h3 id="RestDSL-ConfiguringRestDSL"><span style="line-height: 
1.5625;">Configuring Rest DSL</span></h3><p>The Rest DSL allows to configure 
the following options using a builder style</p><div class="table-wrap"><table 
class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh">Option</th><th colspan="1" rowspan="1" 
class="confluenceTh">Default</th><th colspan="1" rowspan="1" 
class="confluenceTh">Description</th></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">component</td><td colspan="1" rowspan="1" 
class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd">The Camel Rest component to use for the REST transport, 
such as restlet, spark-rest. If no component has been explicit configured, then 
Camel will lookup if there is a Camel component that integrates with the Rest 
DSL, or if a&#160;<code>org.apache.camel.spi.RestConsumerFactory</cod
 e>&#160;is registered in the registry. If either one is found, then that is 
being used.</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">scheme</td><td colspan="1" rowspan="1" 
class="confluenceTd">http</td><td colspan="1" rowspan="1" 
class="confluenceTd">The scheme to use for exposing the REST service. Usually 
http or https is supported</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">hostname</td><td colspan="1" rowspan="1" 
class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd">The hostname to use for exposing the REST 
service.</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">port</td><td colspan="1" rowspan="1" 
class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd">The port number to use for exposing the REST 
service.</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">restHostNameResolver</td><td colspan="1" rowspan="1" 
class="confluenceTd">localHostName</td><td colspan="1" rowspa
 n="1" class="confluenceTd">If no hostname has been explicit configured, then 
this resolver is used to compute the hostname the REST service will be using. 
The resolver supports <code>localHostName</code> or 
<code>localIp</code>.</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">bindingMode</td><td colspan="1" rowspan="1" 
class="confluenceTd">off</td><td colspan="1" rowspan="1" 
class="confluenceTd">Whether binding is in use. See further above for more 
details.</td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd">jsonDataFormat</td><td colspan="1" rowspan="1" 
class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd">Name of specific json data format to use. By default 
<code>json-jackson</code> will be used. <strong>Notice:</strong> Currently 
Jackson is what we recommend and are using for testing.</td></tr><tr><td 
colspan="1" rowspan="1" class="confluenceTd">xmlDataFormat</td><td colspan="1" 
rowspan="1" class="confluenceTd">&#160;</td><td col
 span="1" rowspan="1" class="confluenceTd">Name of specific XML data format to 
use. By default <code>jaxb</code> will be used. <strong>Notice:</strong> 
Currently only <code>jaxb</code> is supported.</td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd">componentProperty</td><td colspan="1" 
rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd">Allows to configure as many additional properties. This is 
used to configure component specific options such as for&#160;<a shape="rect" 
href="restlet.html">Restlet</a>&#160;/&#160;<a shape="rect" 
href="spark-rest.html">Spark-Rest</a>&#160;etc.</td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd">endpointProperty</td><td colspan="1" 
rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" 
class="confluenceTd"><span>Allows to configure as many additional properties. 
This is used to configure endpoint specific options for <span>&#160;</span><a 
shape="rect" href="restlet.html">R
 estlet</a><span>&#160;/&#160;</span><a shape="rect" 
href="spark-rest.html">Spark-Rest</a><span>&#160;etc.</span></span></td></tr><tr><td
 colspan="1" rowspan="1" class="confluenceTd">consumerProperty</td><td 
colspan="1" rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" 
rowspan="1" class="confluenceTd"><span>Allows to configure as many additional 
properties. This is used to configure consumer specific options for 
</span><span>&#160;</span><a shape="rect" 
href="restlet.html">Restlet</a><span>&#160;/&#160;</span><a shape="rect" 
href="spark-rest.html">Spark-Rest</a><span>&#160;etc.</span></td></tr><tr><td 
colspan="1" rowspan="1" class="confluenceTd">dataFormatProperty</td><td 
colspan="1" rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" 
rowspan="1" class="confluenceTd">Allows to configure as many additional 
properties. This is used to configure the data format specific options. For 
example set property prettyPrint to true to have json outputted in pretty 
mode.</td></t
 r></tbody></table></div><p>&#160;</p><p><span style="line-height: 
1.4285715;">For example to configure to use the spark-rest component on port 
9091, then we can do as follows</span></p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" 
type="syntaxhighlighter"><![CDATA[restConfiguration().component(&quot;spark-rest&quot;).port(9091).componentProperty(&quot;foo&quot;,
 &quot;123&quot;);]]></script>
 </div></div><p><span style="line-height: 1.4285715;"><br 
clear="none"></span></p><p><span style="line-height: 1.4285715;">And with XML 
DSL</span></p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" 
type="syntaxhighlighter"><![CDATA[&lt;restConfiguration 
component=&quot;spark-rest&quot; port=&quot;9091&quot;&gt; 
&lt;componentProperty key=&quot;foo&quot; value=&quot;123&quot;/&gt; 
&lt;/restConfiguration&gt;]]></script>


Reply via email to