我当前的用例涉及接收一个JSON对象作为post请求的一部分,它可能类似于:
{"employer": 1, "employee": 15}
然后,我想创建一个"合同"将我的雇主与我的雇员联系起来的对象。
目前,我需要像
这样的东西@POST
public Contract createContract(ContractRequest cr) {
Employee employee = employeeDao.getEmployeeFromId(cr.getEmployeeId());
Employer employer = employerDao.getEmployerFromId(cr.getEmployerId());
Contract c = new Contract();
c.setEmployer(employer);
c.setEmployee(employee);
return c;
}
这有几个缺点:我需要定义一个ContractRequest类,其唯一目的是捕获id,然后传递给员工/雇主daos。
是否可以将json映射到通用java地图对象,而不必为其明确定义类?
答案 0 :(得分:1)
你可以使用杰克逊:
HashMap<String,Object> result = new ObjectMapper().readValue(string, HashMap.class);
或GSON:
String employer = root.getAsJsonObject().get("employer").getAsString();