Spring Integration provides inbound and outbound channel adapters supporting the MQ Telemetry Transport (MQTT) protocol. The current implementation uses the Eclipse Paho MQTT Client library.
Configuration of both adapters is achieved using the
DefaultMqttPahoClientFactory
.
Refer to the Paho documentation for more information about configuration
options.
The inbound channel adapter is implemented by the
MqttPahoMessageDrivenChannelAdapter
. For convenience, it
can be configured using the namespace. A minimal configuration might be:
<bean id="clientFactory" class="org.springframework.integration.mqtt.core.DefaultMqttPahoClientFactory"> <property name="userName" value="${mqtt.username}"/> <property name="password" value="${mqtt.password}"/> </bean> <int-mqtt:message-driven-channel-adapter id="mqttInbound" client-id="${mqtt.default.client.id}.src" url="${mqtt.url}" topics="sometopic" client-factory="clientFactory" channel="output"/>
Attributes:
<int-mqtt:message-driven-channel-adapter id="oneTopicAdapter" client-id="foo" url="tcp://localhost:1883" topics="bar" converter="myConverter" client-factory="clientFactory" send-timeout="123" error-channel="errors" channel="out" />
The client id. | |
The broker URL. | |
A comma delimited list of topics from which this adapter will receive messages. | |
An MqttMessageConverter (optional). The default
DefaultPahoMessageConverter produces a message with a String
payload (by default) with the following headers:
DefaultPahoMessageConverter can be configured to return the raw
byte[] in the payload by declaring it as a <bean/> and setting the
payloadAsBytes property.
| |
The client factory. | |
The send timeout - only applies if the channel might block (such as a bounded QueueChannel
that is currently full).
| |
The error channel - downstream exceptions will be sent to this channel, if supplied, in an
ErrorMessage ; the payload is a MessagingException
containing the failed message and cause.
|
The outbound channel adapter is implemented by the MqttPahoMessageHandler
which
is wrapped in a ConsumerEndpoint
. For convenience, it
can be configured using the namespace.
Attributes:
<int-mqtt:outbound-channel-adapter id="withConverter" client-id="foo" url="tcp://localhost:1883" converter="myConverter" client-factory="clientFactory" default-qos="1" default-retained="true" default-topic="bar" channel="target" />
The client id. | |
The broker URL. | |
An MqttMessageConverter (optional). The default
DefaultPahoMessageConverter
recognizes the following headers:
| |
The client factory. | |
The default quality of service (used if no mqtt_qos header is found). Not allowed
if a custom converter is supplied.
| |
The default value of the retained flag (used if no mqtt_retaind header is found). Not allowed
if a custom converter is supplied.
| |
The default topic to which the message will be sent (used if no mqtt_topic header is found).
|