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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T15:43:15+00:00 2026-06-16T15:43:15+00:00

I’m trying to map a json api response to an object and IntelliJ is

  • 0

I’m trying to map a json api response to an object and IntelliJ is complaining. It’s saying cannot resolve method readValue(java.lang.String, java.lang.Object[]);. I realize I’m not passing the correct parameter but I’ve tried responseClass.class and responseClass.getClass() with no luck.

Usage:

MyClass myClass = new MyClass();
myClass.setResponseClass(User.class);

Definition:

MyClass {
    private Object responseClass;

    public void setResponseClass(Object responseClass) {
        this.responseClass = responseClass;
    }

    public Object getResponseClass() {
        return responseClass;
    }

    public void getApiResponse() {
        //some code here

        ObjectMapper mapper = new com.MyApp.Utility.ObjectMapper();

        //some code here

        //I've tried responseClass.class and responseClass.getClass(), it didn't like either of them
        mapper.readValue(response, responseClass);

        //more code here
    }
}
  • 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-16T15:43:17+00:00Added an answer on June 16, 2026 at 3:43 pm

    This is a really odd way of mapping JSON responses to object, using Jackson. I assume you just want to be able to map arbitrary classes using a utility class? Here’s an example of a much easier way to accomplish this. Note that this uses the ObjectMapper class that comes with your Jackson distro:

    public class JSONUtil {
        private ObjectMapper mapper = new ObjectMapper();
    
        public JSONUtil() {
            super();
            // Set ObjectMapper configuration and properties here
        }
    
        public <T> T deserialize(final String response, final Class<T> responseClass) {
            if(response == null || responseClass == null) return null;
    
            return mapper.readValue(response, responseClass);
        }
    }
    

    Now, you could still map your responses from JSON using the class you posted, with some modifications:

    public class MyClass<T> {
        private Class<T> responseClass;
    
        public MyClass(final Class<T> responseClass) {
            super();
            this.responseClass = responseClass;
        }
    
        public void getApiResponse(final String response) {
    
            final ObjectMapper mapper = new ObjectMapper();
            final T values = mapper.readValue(response, responseClass);
    
            //more code here
        }
    }
    

    And using it as such:

    MyClass<User> myClass = new MyClass<User>(User.class);
    myClass.getApiResponse(someJsonString);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to find ID3V2 tags from MP3 file using jid3lib in Java.
I am confused How to use looping for Json response Array in another Array.
I am using JSon response to parse title,date content and thumbnail images and place
I am trying to render a haml file in a javascript response like so:
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I am using jsonparser to parse data and images obtained from json response. When
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i

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.