Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8435929
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T07:03:21+00:00 2026-06-10T07:03:21+00:00

I would like serialize an object such that one of the fields will be

  • 0

I would like serialize an object such that one of the fields will be named differently based on the type of the field. For example:

public class Response {
    private Status status;
    private String error;
    private Object data;
        [ getters, setters ]
    }

Here, I would like the field data to be serialized to something like data.getClass.getName() instead of always having a field called data which contains a different type depending on the situation.

How might I achieve such a trick using Jackson?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T07:03:23+00:00Added an answer on June 10, 2026 at 7:03 am

    Using a custom JsonSerializer.

    public class Response {
      private String status;
      private String error;
    
      @JsonProperty("p")
      @JsonSerialize(using = CustomSerializer.class)
      private Object data;
    
      // ...
    }
    
    public class CustomSerializer extends JsonSerializer<Object> {
      public void serialize(Object value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonProcessingException {
        jgen.writeStartObject();
        jgen.writeObjectField(value.getClass().getName(), value);
        jgen.writeEndObject();
      }
    }
    

    And then, suppose you want to serialize the following two objects:

    public static void main(String... args) throws Exception {
      ObjectMapper mapper = new ObjectMapper();
      Response r1 = new Response("Error", "Some error", 20);
      System.out.println(mapper.writeValueAsString(r1));
      Response r2 = new Response("Error", "Some error", "some string");
      System.out.println(mapper.writeValueAsString(r2));
    }
    

    The first one will print:

    {"status":"Error","error":"Some error","p":{"java.lang.Integer":20}}
    

    And the second one:

    {"status":"Error","error":"Some error","p":{"java.lang.String":"some string"}}
    

    I have used the name p for the wrapper object since it will merely serve as a placeholder. If you want to remove it, you’d have to write a custom serializer for the entire class, i.e., a JsonSerializer<Response>.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to XML serialize an object that has (among other) a property
I have a simple object graph that I would like to serialize, I haven't
I would like to serialize this object to JSON String public class Person {
I have three jobs that I would like to serialize in Jenkins. They should
instead of using getParameterByName('Field', PostData) (PostData == $('form').serialize();) I would like to write PostData.Field,
I would like to serialize an instance of JS object from the Server-side to
I would like to serialize an object to an XML of this form with
I am writing a Generic class that attempts to serialize an object of Type
I would like to XML serialize instances of my object Exception and store it
I would like to serialize an object to XML inside Android. Any libs suggested?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.