Skip to content
Advertisement

UnrecognizedPropertyException: Unrecognized field not marked as ignorable at Source: org.apache.catalina.connector.CoyoteInputStream@14ec141

I am making rest web-services my code is:

JavaScript

but when i call it with this Json :

JavaScript

I’m getting following Exception:

javax.servlet.ServletException: org.codehaus.jackson.map.exc.UnrecognizedPropertyException: Unrecognized field “userId” (Class com.tazligen.model.GroupMemberMap), not marked as ignorable at [Source: org.apache.catalina.connector.CoyoteInputStream@14ec141; line: 2, column: 15] (through reference chain: com.tazligen.model.GroupMemberMap[“userId”])

My GrouMemberMap model class is :

JavaScript

I have tried another method just like this :

JavaScript

with json

JavaScript

but this works alright :/

Need Someone help.

Advertisement

Answer

I can make following observations after looking at GroupMemberMap Class:

  1. Constructor is missing.
  2. Getter-Setter for the UserId is incorrect.

Also, you can add optional @JsonIgnoreProperties to ignore all other unknown fields.

Here is the corrected code snippet:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement