You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GH-3088: Add Jackson 3 support; deprecate Jackson 2
Fixes: #3088
* Manage `tools.jackson` dependencies, similar way we do for Jackson 2
* Add Jackson 3 counterparts for existing Jackson 2 based classes.
Technically, that is mostly just a copy/paste of existing classes, but with `tools.jackson` API adjustments
* Fix `AbstractJacksonMessageConverter` to catch not only `IOException`, but also `JacksonException`
* Migrate tests and docs to use new classes
* Deprecate Jackson 2 based classes
* Remove `@since` on methods in new classes
* Mark `ProjectingMessageConverter` for deprecation
* Fix local variable names in the `JacksonJsonMessageConverterTests` to reflect reality
Copy file name to clipboardExpand all lines: spring-amqp/src/main/java/org/springframework/amqp/support/converter/AbstractJackson2MessageConverter.java
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,10 @@
51
51
* @author Gary Russell
52
52
*
53
53
* @since 2.1
54
+
*
55
+
* @deprecated since 4.0 in favor of {@link AbstractJacksonMessageConverter} for Jackson 3.
0 commit comments