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 8916151
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T05:09:45+00:00 2026-06-15T05:09:45+00:00

I need to parse relatively complex JSON with Jackson library. Could you guys advice

  • 0

I need to parse relatively complex JSON with Jackson library. Could you guys advice what Java class structure should I have and what Jackson approach to use to parse the following JSON object.

It is like this:

{
  "firstField": "Something One",
  "secondField": "Something Two",
  "thirdField": [
    {
      "thirdField_one": "Something Four",
      "thirdField_two": "Something Five"
    },
    {
      "thirdField_one": "Something Six",
      "thirdField_two": "Something Seven"
    }
  ],
  "fifthField": [
    {
      "fifthField_one": "Something… ",
      "fifthField_two": "Something...",
      "fifthField_three": 12345
    },
    {
      "fifthField_one": "Something",
      "fifthField_two": "Something",
      "fifthField_three": 12345
    }
  ]
}
  • 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-15T05:09:46+00:00Added an answer on June 15, 2026 at 5:09 am

    I’m more versed with Gson, but I think this should work.

    See StaxMan’s note below:

    Jackson does not automatically detect private fields (it can be configured to, with @JsonAutoDetect or globally). So fields should either be private, annotated with @JsonProperty, or have matching public getter.

    public class MyClass {
        private String firstField, secondField;
        private ThirdField thirdField;
        private FifthField fifthField;
    
        public static class ThirdField {
            private List<ThirdFieldItem> thirdField;
        }
    
        public static class ThirdFieldItem {
            private String thirdField_one, thirdField_two;
        }
    
        public static class FifthField {
            private List<FifthFieldItem> fifthField;
        }
    
        public static class FifthField {
            private String fifthField_one, fifthField_two;
            private int fifthField_three;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm relatively new to Java programming and need to parse a complex JSON object
Hi I need parse and deserialize pseudo JSON string. Input data: {aBubbleData[ 'jaja2581' ]={
I need to parse a JSON string in my project, which runs on BB
i need to parse simple JSON php in my tableview for that i searched
I need to parse files generated by a third-party application. Using ANTLR, I have
I'm relatively new to java and android, in my android application I need to
I'm relatively new to Java, so I have little to no idea where to
I have this java application and ran into a requirement to parse an STDF.
I need parse through a file and do some processing into it. The file
Need to parse a file for lines of data that start with this pattern

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.