You have unquoted field names in the JSON string, which is non-standard!
{ name : "Markzi" }
You can configure the ObjectMapper to handle this
ObjectMapper mapper = new ObjectMapper(); mapper.configure(JsonParser.Feature.ALLOW_UNQUOTED_FIELD_NAMES, true);