org.codehaus.jackson.JsonParseException: Unexpected character was expecting double-quote to start field name at Source: java.io.StringReader line: 1, column: 3]
You have unquoted field names in the JSON string, which is non-standard! You can configure the ObjectMapper to handle this
Read More »