Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting the following error when trying to get a JSON request and process it>

org.codehaus.jackson.map.JsonMappingException: No suitable constructor found for type [simple type, class com.myweb.ApplesDO]: can not instantiate from JSON object (need to add/enable type information?)

Here is the JSON I am trying to send:

    {"applesDO":[
         {
               "apple":"Green Apple"
         },{
               "apple":"Red Apple"
         }
         ]
     }

In Controller , I have the following method signature

@RequestMapping("showApples.do")
public String getApples(@RequestBody final AllApplesDO applesRequest){
    // Method Code
}

AllApplesDO is a wrapper of ApplesDO :

public class AllApplesDO {

        private List<ApplesDO> applesDO;

        public List<ApplesDO> getApplesDO() {
            return applesDO;
        }

        public void setApplesDO(List<ApplesDO> applesDO) {
            this.applesDO = applesDO;
        }
}

ApplesDO

public class ApplesDO {

        private String apple;

        public String getApple() {
            return apple;
        }

        public void setApple(String appl) {
            this.apple = apple;
        }

            public ApplesDO(CustomType custom){

                     //constructor Code
            }
}

I am thinking that JACKSON is unable to convert JSON into JAVA objects for sublclasses. Please help with the configuration parameters for JACKSON to convert JSON into JAVA Objects! I am using Spring Framework

EDIT: Included the major bug that is causing this problem in the above sample class - Please look accepted answer for solution.

share|improve this question
1  
I don't see any subclasses in the above code, is this code what your trying or are you making up a simpler example? – gkamal Oct 2 '11 at 12:35
@gkamal Was making up a code.. and I realized why there was problem...Thanks a lot for looking! – Lucky Murari Oct 2 '11 at 14:07

2 Answers

up vote 41 down vote accepted

So, finally I realized what the problem is. It is not a Jackson configuration issue as I doubted.

Actually the problem was in ApplesDO Class:

public class ApplesDO {

    private String apple;

    public String getApple() {
        return apple;
    }

    public void setApple(String appl) {
        this.apple = apple;
    }

        public ApplesDO(CustomType custom){

                 //constructor Code
        }}

There was a custom constructor defined for the class making it the default constructor. Introducing a dummy constructor has made the error to go away.

public class ApplesDO {

    private String apple;

    public String getApple() {
        return apple;
    }

    public void setApple(String appl) {
        this.apple = apple;
    }

        public ApplesDO(CustomType custom){

                 //constructor Code
        }
          //Introducing the dummy constructor
         public ApplesDO(){
         }

    }
share|improve this answer
Genius! Thanks! – by0 Nov 25 '12 at 1:05
May I ask where CustomType comes from. I am trying a structure like this but I am absolutely new to Java. – andho Jan 11 at 9:19
@andho CustomType is just a random name I gave in this madeup example. The CustomType was defined in one of the other classes – Lucky Murari Jan 27 at 7:41
Yeah figured that out hehe. My problem was I was using a nested class, which cannot be used with Jackson. – andho Jan 29 at 0:11
5  
You can use jackson with inner (nested) classes, serialization works just fine in this case. The only stumbling block is that the inner class must be marked as "static" for deserialization to work properly. See exlanation here: cowtowncoder.com/blog/archives/2010/08/entry_411.html – jpennell Feb 14 at 1:35
show 2 more comments

Can you please test this structure. If I remember correct you can use it this way:

{
    "applesRequest": {
        "applesDO": [
            {
                "apple": "Green Apple"
            },
            {
                "apple": "Red Apple"
            }
        ]
    }
}

Second, please add default constructor to each class it also might help.

share|improve this answer
Not working: Getting following error: "org.codehaus.jackson.map.exc.UnrecognizedPropertyException: Unrecognized field &quot;applesRequest&quot; (Class com.smartshop.dao.AllApplesDO), not marked as ignorable" – Lucky Murari Oct 2 '11 at 10:54
Previously it used to at least not through error for AllApplesDO and throws only for enclosed class.. now it throws for the first class itself – Lucky Murari Oct 2 '11 at 10:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.