Why do we need jackson databind?
问题 I am new in JAVA EE. My question is, why do we need jackson databind? Because We can receive the Request Params by @ModelAttribute and requests through http PUT or POST by @RequestBody . I can't find a reason why we need jackson databind to convert json/xml to POJO or vice versa. Thanks. 回答1: Why do we need jackson databind? Because representing structured data is much easier using XML (or JSON) than using simple name-value pairs. Because it is more convenient to send and receive JSON from