You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
We are developing an Atlassian Confluence plugin (starting with RefApp, because it is a lighter app to develop on) using the Atlassian REST API plugin module (atlas-create-refapp-plugin-module, option 7 or atlas-create-confluence-plugin-module, option 9). (The front-end is Angular, so we are relying on the Rest API for the whole app.)
I need to customize the Jackson ObjectMapper. Here are two related Atlassian Community posts that are unanswered/only partially answered:
https://community.developer.atlassian.com/t/can-i-customize-the-jackson-objectmapper/31069
Here is what I want access to:
Jackson Serialization Features:
https://github.com/FasterXML/jackson-databind/wiki/Serialization-Features
Jackson Deserialization Features:
https://github.com/FasterXML/jackson-databind/wiki/Deserialization-Features
I have dug through the code of Atlassian's REST API module:
How do I override Atlassian's instantiation of ObjectMapper and register it with the appropriate modules so that I can use my own Jackson ObjectMapper settings?
Just add Jackson as dependency and use it directly.
(Please note: don't let Bandana serialize your objects, use your own mapper then. Avoids many problems…)
pom.xml
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<!-- Jackson 2.15.0 may break with older Java -> test again, when with > 2.15.0 -->
<version>2.14.2</version>
</dependency>
Code
ObjectMapper objectMapper = new ObjectMapper();
@David Maye did you ever figure out how to do this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is just amazing how all the nitty-gritty questions are left unanswered.
I just consume the raw JSON string in my method and call my own object mapper.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.