this.mapper = mapper;
}
public ChineseEntity parseDataModel(String jsonString)
throws Exception {
ChineseEntity dataModel = null;
try {
dataModel = this.mapper.readValue(jsonString, ChineseEntity.class);
} catch (IOException e) {
throw new Exception("can't map json to java Obejct, check input json String : " + jsonString, e);
}