Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Jetty Component

The jetty component provides HTTP-based endpoints for consuming and producing HTTP requests. That is, the Jetty component behaves as a simple Web server.
Jetty can also be used as a http an HTTP client which mean you can also use it with Camel as a producer.

Info
titleStream

The assert call appears in this example, because the code is part of an unit test. Jetty is stream based, which means the input it receives is submitted to Camel as a stream. That means you will only be able to read the content of the stream once.

If you find a situation where the message body appears to be empty or you need to access the the Exchange.HTTP_RESPONSE_CODE data multiple times (, e.g.: , doing multicasting, or redelivery error handling), you should use Stream caching or convert the message body to a String which is safe to be re-read multiple times.

Maven users will need to should add the following dependency to their pom.xml for this component:

Code Block
xml
xml
<dependency>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-jetty</artifactId>
    <version>x.x.x</version>
    <!-- use the same version as your Camel core version -->
</dependency>

URI

...

Format

Code Block
jetty:http://hostname[:port][/resourceUri][?options]

You can append query options to the URI in the following format, : ?option=value&option=value&...

Options

Div
classconfluenceTableSmall

Name

Default Value

Description

sessionSupport

false

Specifies whether to enable the session manager on the server side of Jetty.

httpClient.XXXxxx

null

Configuration of Jetty's HttpClient. For example, setting httpClient.idleTimeout=30000 sets the idle timeout to to 30 seconds. And httpClient.timeout=30000 sets the request timeout to to 30 seconds, in case you want to timeout sooner if you have long running request/response calls.

httpClient

null

To use a shared org.eclipse.jetty.client.HttpClient for all producers created by this endpoint. This option should only be used in special circumstances.

httpClientMinThreads

null

Camel 2.11: Producer only: To set a value for minimum number of threads in HttpClient thread pool. This setting override any setting configured on component level. Notice that both a min and max size must be configured. If not set it default to min 8 threads used in Jettys Jetty's thread pool.

httpClientMaxThreads

null

Camel 2.11: Producer only: To set a value for maximum number of threads in HttpClient thread pool. This setting override any setting configured on component level. Notice that both a min and max size must be configured. If not set it default to max max 16 threads used in Jettys Jetty's thread pool.

httpBindingRef

null

Reference to an org.apache.camel.component.http.HttpBinding in the Registry. HttpBinding can be used to customize how a response should be written for the consumer.

jettyHttpBindingRef

null

Camel 2.6.0+: Reference to an org.apache.camel.component.jetty.JettyHttpBinding in the Registry. JettyHttpBinding can be used to customize how a response should be written for the producer.

matchOnUriPrefix

false

Whether or not the CamelServlet should try to find a target consumer by matching the URI prefix if no exact match is found.

See here How do I let Jetty match wildcards.

handlers

null

Specifies a comma-delimited set of org.mortbay.jetty.Handler instances in your Registry (such as your Spring ApplicationContext). These handlers are added to the Jetty servlet context (for example, to add security). ImportantNote: You you can not use different handlers with different Jetty endpoints using the same port number. The handlers is associated to the port number. If you need different handlers, then use different port numbers.

chunked

true

Camel 2.2: If this option is is false Jetty servlet will disable the HTTP streaming and set the contentthe Content-length Length header on the response

enableJmx

false

Camel 2.3: If this option is true, Jetty JMX support will be enabled for this endpoint. See Jetty JMX support for more details.

disableStreamCache

false

Camel 2.3: Determines whether or not the raw input stream from Jetty is cached or not (Camel will read the stream into a in memory/overflow to file, Stream caching) cache. By default Camel will cache the Jetty input stream to support reading it multiple times to ensure it Camel can retrieve all data from the stream. However you can set this option to true when you for example need to access the raw stream, such as streaming it directly to a file or other persistent store. 

DefaultHttpBinding will copy the request input stream into a stream cache and put it into message body if this option is false to support reading the stream multiple times. If you use Jetty to bridge/proxy an endpoint then consider enabling this option to improve performance, in case you do not need to read the message payload multiple times.

throwExceptionOnFailure

true

Option to disable throwing the HttpOperationFailedException in case of failed responses from the remote server. This allows you to get all responses regardles regardless of the HTTP status code.

transferException

false

Camel 2.6: If enabled and an Exchange failed processing on the consumer side, and if the caused Exception was send back serialized in the response as a application/x-java-serialized-object content type.

On the producer side the exception will be deserialized and thrown as is, instead of the HttpOperationFailedException. The caused exception is required to be serialized.

bridgeEndpoint

false

Camel 2.1: If the option is true, HttpProducer will ignore the the Exchange.HTTP_URI header, and use the endpoint's URI for request. You may also set the the throwExceptionOnFailure to be false to let the the HttpProducer send all the fault response back.

Camel 2.3: If the option is true, HttpProducer and and CamelServlet will skip the gzip processing if the contentthe Content-encoding Encoding is "gzip". Also consider setting disableStreamCache to .

Consider setting disableStreamCache=true to optimize when bridging.

enableMultipartFilterenablemulti-partFilter

true

Camel 2.5: Whether Jetty org.eclipse.jetty.servlets.MultiPartFiltermulti-partFilter is enabled or not. You should set this value to false when bridging endpoints, to ensure multipart multi-part requests is proxied/bridged as well.

multipartFilterRefmulti-partFilterRef

null

Camel 2.6: Allows using a custom multipart multi-part filter. Note: setting multipartFilterRef multi-partFilterRef forces the value of enableMultipartFilter enablemulti-partFilter to true.

filterInit.xxx

null

Camel 2.17: Configuration for

the

the InitParameters of filter. For example,

setting

setting filterInit.parameter=value

 ,

the parameter could be used when calling the

filter

filter init() method.

filtersRef

null

Camel 2.9: Allows using a custom filters which is putted into a list and can be find in the Registry

continuationTimeout

null

Camel 2.6: Allows to set a timeout in millis milliseconds when using Jetty as consumer (server). By default Jetty uses 30000. You can use a value of <= 0 to never expire. If a timeout occurs then the request will be expired and Jetty will return back a http error an HTTP error 503 to the client.

This option is only in use when using Jetty with the Asynchronous Routing Engine.

useContinuation

true

Camel 2.6: Whether or not to use Jetty continuations for the Jetty Server.

sslContextParametersRef

null

Camel 2.8: Deprecated Reference to a org.apache.camel.util.jsse.SSLContextParameters in the Registry.  This reference overrides any configured configured SSLContextParameters at the component level. 

See Using the JSSE Configuration Utility.

sslContextParameters

null

Camel 2.17: Reference to a org.apache.camel.util.jsse.SSLContextParameters in the Registry.  This reference overrides any

configured

configured SSLContextParameters at the component level.   

See Using the JSSE Configuration Utility.

traceEnabled

false

Specifies whether to enable enable HTTP TRACE for this Jetty consumer. By default default TRACE is turned off.

optionsEnabled

false

Camel 2.17: Specifies whether to

enable

enable HTTP OPTIONS for this Jetty consumer. By

default

default OPTIONS is turned off.

headerFilterStrategy

null

Camel 2.11: Reference to a instance of org.apache.camel.spi.HeaderFilterStrategy in the Registry. It will be used to apply the custom custom headerFilterStrategy on the new create HttpJettyEndpoint.

httpMethodRestrict

null

Camel 2.11: Consumer only: Used to only allow consuming if the the HttpMethod matches, such as as GET/POST/PUT etc. From Camel 2.15 onwards : multiple methods can be specified separated by comma.

urlRewrite

null

Camel 2.11: Producer only Refers to a custom org.apache.camel.component.http.UrlRewrite which allows you to rewrite urls URLs when you bridge/proxy endpoints.

See more details at UrlRewrite and How to use Camel as a HTTP proxy between a client and server.

responseBufferSize

null

Camel 2.12: To use a custom buffer size on the javax.servlet.ServletResponse.

proxyHost

null

Camel 2.11: Producer only The http HTTP proxy Host url URL which will be used by Jetty client.

proxyPort

null

Camel 2.11: Producer only The http HTTP proxy port which will be used by Jetty client.

sendServerVersion

true

Camel 2.13: if the option is true, jetty will send the server header with the jetty version information to the client which sends the request. NOTE

Note: please make sure there is no any other other camel-jetty endpoint is share the same port, otherwise this option may not work as expected.

sendDateHeader

false

Camel 2.14: if the option is true, jetty server will send the date header to the client which sends the request. NOTE Note: please make sure there is no any other other camel-jetty endpoint is share the same port, otherwise this option may not work as expected.

enableCORS

false

Camel 2.15: if the option is true, Jetty server will setup the CrossOriginFilter which supports the CORS out of box.

okStatusCodeRange

200-299

Camel 2.16: Producer only The status codes which is considered a success response. The values are inclusive. The range must be defined as from-to with the dash included.

...

Camel uses the same message headers as the HTTP component.
From Camel 2.2, it also uses (Exchange.HTTP_CHUNKED, CamelHttpChunked) header to turn on or turn off the chuched toggle chunked encoding on the the camel-jetty consumer. Camel also populates all request.parameter and request.headers. For example, given a client request with the URL, http://myserver/myserver?orderid=123, the exchange will contain a header named orderid with the value 123.

Starting with From Camel 2.2.0, : you can get the request.parameter from the message header not only from Get from GET HTTP Method, but also other HTTP method.

...

The Jetty component supports both consumer and producer endpoints. Another option for producing to other HTTP endpoints, is to use the HTTP Component

Component Options

The JettyHttpComponent provides the following options:

Div
classconfluenceTableSmall

Name

Default Value

Description

enableJmx

false

Camel 2.3: If this option is true, Jetty JMX support will be enabled for this endpoint. See Jetty JMX support for more details.

sslKeyPassword

null

Consumer only: The password for the keystore when using SSL.

sslPassword

null

Consumer only: The password when using SSL.

sslKeystore

null

Consumer only: The path to the keystore.

minThreads

null

Camel 2.5 Consumer only: To set a value for minimum number of threads in server thread pool. Notice that both a min and max size must be configured.

maxThreads

null

Camel 2.5 Consumer only: To set a value for maximum number of threads in server thread pool. Notice that both a min and max size must be configured.

threadPool

null

Camel 2.5 Consumer only: To use a custom thread pool for the server. This option should only be used in special circumstances.

sslSocketConnectors

null

Camel 2.3 Consumer only: A map which contains per port number specific SSL connectors. See section SSL support for more details.

socketConnectors

null

Camel 2.5 Consumer only: A map which contains per port number specific HTTP connectors. Uses the same principle as sslSocketConnectors and therefore see section SSL support for more details.

sslSocketConnectorProperties

null

Camel 2.5 Consumer only. A map which contains general SSL connector properties. See section SSL support for more details.

socketConnectorProperties

null

Camel 2.5 Consumer only. A map which contains general HTTP connector properties. Uses the same principle as sslSocketConnectorProperties and therefore see section SSL support for more details.

httpClient

null

Deprecated: Producer only: To use a custom HttpClient with the jetty producer. This option is removed

Note: from Camel 2.11 onwards, instead you can set this option has been removed. Set the option on the endpoint instead.

httpClientMinThreads

null

Producer only: To set a value for minimum number of threads in HttpClient thread pool. Notice that both a min and max size must be configured.

httpClientMaxThreads

null

Producer only: To set a value for maximum number of threads in HttpClient thread pool. Notice that both a min and max size must be configured.

httpClientThreadPool

null

Deprecated: Producer only: To use a custom thread pool for the client. This option is

Note: this option has been removed from Camel 2.11 onwards.

sslContextParameters

null

Camel 2.8: To configure a custom SSL/TLS configuration options at the component level. 

See  Using the JSSE Configuration Utility for more details.

requestBufferSize

null

Camel 2.11.2: Allows to configure a custom value of the request buffer size on the Jetty connectors.

requestHeaderSize

null

Camel 2.11.2: Allows to configure a custom value of the request header size on the Jetty connectors.

responseBufferSize

null

Camel 2.11.2: Allows to configure a custom value of the response buffer size on the Jetty connectors.

responseHeaderSize

null

Camel 2.11.2: Allows to configure a custom value of the response header size on the Jetty connectors.

proxyHost

null

Camel 2.12.2/2.11.3 To use a http an HTTP proxy.

proxyPort

null

Camel 2.12.2/2.11.3: To use a http an HTTP proxy.

errorHandler

null

Camel 2.15: This option is used to set

the

the ErrorHandler that Jetty server uses.

allowJavaSerializedObject

false

Camel 2.16.1/2.15.5: Whether to allow java serialization when a request uses context-type=application/x-java-serialized-object.

This is by default turned off. If you enable this then

When true, be aware that Java will deserialize the incoming data from the request to Java and that can be a potential security risk.

Producer Example

The following is a basic example of how to send an HTTP request to an existing HTTP endpoint.

in Java DSL:

Code Block
java
java
from("direct:start")
  .to("jetty://http://www.google.com");

or in Spring XMLXML DSL:

Code Block
xml
xml
<route>
    <from uri="direct:start"/>
    <to uri="jetty://http://www.google.com"/>
<route>

...

Note
titleUsage of localhost

When you specify localhost in a URL, Camel exposes the endpoint only on the local TCP/IP network interface, so it cannot be accessed from outside the machine it operates on.

If you need to expose a Jetty endpoint on a specific network interface, the numerical IP address of this interface should be used as the host. If you need to expose a Jetty endpoint on all network interfaces, the 0.0.0.0 address should be used.

Tip

To listen across an entire URI prefix, see How do I let Jetty match wildcards.

...

Our business logic is implemented in the MyBookService class, which accesses the HTTP request contents and then returns a response.
Note: The assert call appears in this example, because the code is part of an unit test.

Wiki Markup
{snippet:id=e2|lang=java|url=camel/trunk/components/camel-jetty9/src/test/java/org/apache/camel/component/jetty/JettyRouteTest.java}
The following sample shows a content-based route that routes all requests containing the URI parameter, one, to the endpoint, mock:one, and all others to mock:other.
Wiki Markup
{snippet:id=e1|lang=java|url=camel/trunk/components/camel-jetty9/src/test/java/org/apache/camel/component/jetty/JettyContentBasedRouteTest.java}
So if a client sends the HTTP request, http://serverUri?one=hello, the Jetty component will copy the HTTP request parameter, one to the exchange's in.header. We can then use the simple language to route exchanges that contain this header to a specific endpoint and all others to another. If we used a language more powerful than Simple (such as EL or OGNL) we could also test for the parameter value and do routing based on the header value as well.

...

The session support option, sessionSupport, can be used to enable a HttpSession object and access the session object while processing the exchange. For example, the following route enables sessions:

Code Block
xml
xml
<route>
    <from uri="jetty:http://0.0.0.0/myapp/myservice/?sessionSupport=true"/>
    <processRef ref="myCode"/>
<route>

The myCode Processor can be instantiated by a Spring bean element:

Code Block
xml
xml
<bean id="myCode"class="com.mycompany.MyCodeProcessor"/>

Where the processor implementation can access the HttpSession as follows:

Code Block
java
java
public void process(Exchange exchange) throws Exception {
    HttpSession session = exchange.getIn(HttpMessage.class).getRequest().getSession();
    ...
}

...

Using the JSSE Configuration Utility

As of From Camel 2.8, the Jetty : the camel-jetty component supports SSL/TLS configuration through the Camel JSSE Configuration Utility.  This utility greatly decreases the amount of component specific code you need to write and is configurable at the endpoint and component levels.  The following examples demonstrate how to use the utility with the Jetty component.

Programmatic configuration of the component
Code Block
languagejava
KeyStoreParameters ksp = new KeyStoreParameters();
ksp.setResource("/users/home/server/keystore.jks");
ksp.setPassword("keystorePassword");

KeyManagersParameters kmp = new KeyManagersParameters();
kmp.setKeyStore(ksp);
kmp.setKeyPassword("keyPassword");

SSLContextParameters scp = new SSLContextParameters();
scp.setKeyManagers(kmp);

JettyComponent jettyComponent = getContext().getComponent("jetty", JettyComponent.class);
jettyComponent.setSslContextParameters(scp);

...

Jetty provides SSL support out of the box. To enable Jetty to run in SSL mode, simply format the URI with using the https:// prefix---for example.

Example:

Code Block
xml
xml
<from uri="jetty:https://0.0.0.0/myapp/myservice/"/>

Jetty also needs to know where to load your keystore from and what passwords to use in order to load the correct SSL certificate. Set the following JVM System Properties:

until Before Camel 2.23:

PropertyDescription
jetty.ssl.keystore

...

Specifies the location of the

...

Java keystore file, which contains the Jetty server's

...

own X.509 certificate in a key entry. A key entry stores

...

the X.509 certificate (effectively, the public key) and also its associated private key.
jetty.ssl.password

...

The store password, which is required to access

...

the keystore file (this is the same password that is supplied to the keystore command's -storepass option).
jetty.ssl.keypassword

...

The key password, which is used to access the certificate's key entry in

...

the keystore (this is the same password that is supplied to the keystore command's -keypass option).

 

from From Camel 2.3 onwards:

  
org.eclipse.jetty.ssl.keystore

...

Specifies the location of the

...

Java keystore file, which contains the Jetty server's

...

own X.509 certificate in a key entry. A key entry stores

...

the X.509 certificate (effectively, the public key) and also its associated private key.
org.eclipse.jetty.ssl.password

...

The store password, which is required to access

...

the keystore file (this is the same password that is supplied to

...

the keystore command'

...

keystore option).
org.eclipse.jetty.ssl.keypassword

...

The key password, which is used to access the certificate's key entry in

...

the keystore (this is the same password that is supplied to

...

the keystore command'

...

keystore option).

For details of how to configure SSL on a Jetty endpoint, read the following documentation at the Jetty Site: http://docs.codehaus.org/display/JETTY/How+to+configure+SSL Jetty documentation.

Some SSL properties aren't exposed directly by Camel, however Camel does expose the underlying SslSocketConnector, which will allow you to set properties like like needClientAuth for mutual authentication requiring a client certificate or or wantClientAuth for mutual authentication where a client doesn't need a certificate but can have one.

There's a slight difference between the various Camel versions:

...

Code Block
xml
xml
<bean id="jetty" class="org.apache.camel.component.jetty.JettyHttpComponent">
    <property name="sslSocketConnectors">
        <map>
            <entry key="8043">
                <bean class="org.eclipse.jetty.server.ssl.SslSocketConnector">
                    <property name="password"value="..."/>
                    <property name="keyPassword"value="..."/>
                    <property name="keystore"value="..."/>
                    <property name="needClientAuth"value="..."/>
                    <property name="truststore"value="..."/>
                </bean>
            </entry>
        </map>
    </property>
</bean>

*From Camel 2.5: we switch to use use SslSelectChannelConnector *

Code Block
xml
xml
<bean id="jetty" class="org.apache.camel.component.jetty.JettyHttpComponent">
    <property name="sslSocketConnectors">
        <map>
            <entry key="8043">
                <bean class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector">
                    <property name="password"value="..."/>
                    <property name="keyPassword"value="..."/>
                    <property name="keystore"value="..."/>
                    <property name="needClientAuth"value="..."/>
                    <property name="truststore"value="..."/>
                </bean>
            </entry>
        </map>
    </property>
</bean>

The value you use as keys in the above map is the port you configure Jetty to listen on.

Configuring

...

General SSL

...

Properties

Available as of From Camel 2.5Instead : instead of a per port number specific SSL socket connector (as shown above) you can now configure general properties which applies for all SSL socket connectors (which is not explicit configured as above with the port number as entry).

Code Block
xml
xml
<bean id="jetty" class="org.apache.camel.component.jetty.JettyHttpComponent">
    <property name="sslSocketConnectorProperties">
        <map>
            <entry key="password"value="..."/>
            <entry key="keyPassword"value="..."/>
            <entry key="keystore"value="..."/>
            <entry key="needClientAuth"value="..."/>
            <entry key="truststore"value="..."/>
        </map>
    </property>
</bean>

How to

...

Obtain A Reference to the X509Certificate

Jetty stores a reference to the certificate in the the HttpServletRequest which you can access from code as follows:

Code Block
languagejava
HttpServletRequest req = exchange.getIn().getBody(HttpServletRequest.class);
X509Certificate cert = (X509Certificate) req.getAttribute("javax.servlet.request.X509Certificate")

Configuring

...

General HTTP

...

Properties

Available as of From Camel 2.5Instead : instead of a per port number specific HTTP socket connector (as shown above) you can now configure general properties which applies for all HTTP socket connectors (which is not explicit configured as above with the port number as entry).

Code Block
xml
xml
<bean id="jetty" class="org.apache.camel.component.jetty.JettyHttpComponent">
    <property name="socketConnectorProperties">
        <map>
            <entry key="acceptors" value="4"/>
            <entry key="maxIdleTime" value="300000"/>
        </map>
    </property>
</bean>

Obtaining X-Forwarded-For

...

Header With HttpServletRequest.getRemoteAddr()

If the HTTP requests are handled by an Apache server and forwarded to jetty with mod_proxy, the original client IP address is in the the X-Forwarded-For header and the the HttpServletRequest.getRemoteAddr() will return the address of the Apache proxy.

Jetty has a forwarded property which takes the value from from X-Forwarded-For and places it in the the HttpServletRequest remoteAddr property.  This property is not available directly through the endpoint configuration but it can be easily added using the the socketConnectors property:

Code Block
languagexml
<bean id="jetty" class="org.apache.camel.component.jetty.JettyHttpComponent">
    <property name="socketConnectors">
        <map>
            <entry key="8080">
                <bean class="org.eclipse.jetty.server.nio.SelectChannelConnector">
                    <property name="forwarded" value="true"/>
                </bean>
            </entry>
        </map>
    </property>
</bean>

This is particularly useful when an existing Apache server handles TLS connections for a domain and proxies them to application servers internally.

Default

...

Behavior for

...

Returning HTTP

...

Status Codes

The default behavior of HTTP status codes is defined by the org.apache.camel.component.http.DefaultHttpBinding class, which handles how a response is written and also sets the HTTP status code.

If the exchange was processed successfully, the the 200 HTTP status code is returned.
If the exchange failed with an exception, the the 500 HTTP status code is returned, and the stacktrace is returned in the body. If you want to specify which HTTP status code to return, set the code in the Exchange.HTTP_RESPONSE_CODE header of the the OUT message.

Customizing Customizing HttpBinding

By default, Camel uses the org.apache.camel.component.http.DefaultHttpBinding to handle how a response is written. If you like, you can customize this behavior either by implementing your own HttpBinding class or by extending DefaultHttpBinding and overriding the appropriate methods.

The following example shows how to customize the DefaultHttpBinding in order to change how exceptions are returned:

Wiki Markup
{snippet:id=e1|lang=java|url=camel/trunk/components/camel-jetty9/src/test/java/org/apache/camel/component/jetty/HttpBindingRefTest.java}
We can then create an instance of our binding and register it in the Spring registry as follows:

...

Code Block
xml
xml
<route><from uri="jetty:http://0.0.0.0:8080/myapp/myservice?httpBindingRef=mybinding"/><to uri="bean:doSomething"/></route>

Jetty

...

Handlers and

...

Security Configuration

You can configure a list of Jetty handlers on the endpoint, which can be useful for enabling advanced Jetty security features. These handlers are configured in Spring XML as follows:

Code Block
xml
xml
<-- Jetty Security handling -->
<bean id="userRealm" class="org.mortbay.jetty.plus.jaas.JAASUserRealm">
    <property name="name" value="tracker-users"/>
    <property name="loginModuleName" value="ldaploginmodule"/>
</bean>

<bean id="constraint" class="org.mortbay.jetty.security.Constraint">
    <property name="name" value="BASIC"/>
    <property name="roles" value="tracker-users"/>
    <property name="authenticate" value="true"/>
</bean>

<bean id="constraintMapping" class="org.mortbay.jetty.security.ConstraintMapping">
    <property name="constraint" ref="constraint"/>
    <property name="pathSpec" value="/*"/>
</bean>

<bean id="securityHandler" class="org.mortbay.jetty.security.SecurityHandler">
    <property name="userRealm" ref="userRealm"/>
    <property name="constraintMappings" ref="constraintMapping"/>
</bean>

And from From Camel 2.3 onwards: you can configure a list of Jetty handlers as follows:

...

You can then define the endpoint as:

Code Block
languagejava
from("jetty:http://0.0.0.0:9080/myservice?handlers=securityHandler")

If you need more handlers, set the handlers option equal to a comma-separated list of bean IDs.

How to

...

Return a

...

Custom HTTP 500

...

Reply Message

You may want to return a custom reply message when something goes wrong, instead of the default reply message Camel Jetty replies with.
You could use a custom HttpBinding to be in control of the message mapping, but often it may be easier to use Camel's Exception Clause to construct the custom reply message. For example as show here, where we return

Example: return the message: Dude something went wrong with for the HTTP error code 500:

Wiki Markup
{snippet:id=e1|lang=java|url=camel/trunk/components/camel-jetty9/src/test/java/org/apache/camel/component/jetty/JettyOnExceptionHandledTest.java}

Multi-

...

Part Form support

From Camel 2.3.0, : camel-jetty support to multipart multi-part form post out of box. The submitted form-data are mapped into the message header. Camel camel-jetty creates an attachment for each uploaded file. The file name is mapped to the name of the attachment. The content type is set as the content type of the attachment file name. You can find the example here.

Wiki Markup
{snippet:id=e1|lang=java|url=camel/trunk/components/camel-jetty9/src/test/java/org/apache/camel/component/jetty/MultiPartFormTestmulti-partFormTest.java|title=Note: getName() functions as shown below in versions 2.5 and higher. In earlier versions you receive the temporary file name for the attachment instead}

Jetty JMX

...

Support

From Camel 2.3.0, camel-jetty supports the enabling of Jetty's JMX capabilities at the component and endpoint level with the endpoint configuration taking priority. Note that JMX must be enabled within the Camel context in order to enable JMX support in this component as the component provides Jetty with a reference to the the MBeanServer registered with the Camel context. Because the the camel-jetty component caches and reuses Jetty resources for a given protocol/host/port pairing, this configuration option will only be evaluated during the creation of the first endpoint to use a protocol/host/port pairing. For example, given two routes created from the following XML fragments, JMX support would remain enabled for all endpoints listening on ": https://0.0.0.0".

Code Block
xml
xml
<from uri="jetty:https://0.0.0.0/myapp/myservice1/?enableJmx=true"/>
Code Block
xml
xml
<from uri="jetty:https://0.0.0.0/myapp/myservice2/?enableJmx=false"/>

The The camel-jetty component also provides for direct configuration of the Jetty MBeanContainer. Jetty creates MBean names dynamically. If you are running another instance of Jetty outside of the Camel context and sharing the same MBeanServer same MBeanContainer between the instances, you can provide both instances with a reference to the same same MBeanContainer in order to avoid name collisions when registering Jetty MBeans.

...