Details
Assignee
UnassignedUnassignedReporter
Mike KellyMike KellyLabels
Components
Affects versions
Priority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
Mike Kelly
Mike KellyLabels
Components
Affects versions
Priority
PagerDuty
PagerDuty
PagerDuty
Created March 2, 2017 at 3:15 PM
Updated September 21, 2021 at 9:14 PM
As discussed on Mattermost with @jesse, the JMS Northbounder's configuration for
<send-as-object-message>true</send-as-object-message>
doesn't actually work, because the object is not marked asSerializable
.Spring defaults to using SimpleMessageConverter, but can be configured to use MappingJackson2MessageConverter instead (which turns everything into JSON with Jackson).
Since the existing feature does not work, it's probably best to just drop the
<send-as-object-message>
option entirely, and replace it with<send-as-json>true</send-as-json
, which uses the Jackson message converter.