jquery的ajax 处理后台传来json格式的二维数组

@SuppressWarnings("unchecked")
@Path("getUsers.html")
@POST
@Produces({ MediaType.APPLICATION_JSON })
public Map getUserByName(MultivaluedMap formParams) throws Exception {
String name=formParams.getFirst("name");
String project_id=formParams.getFirst("part_id");
List Users=null;
List parts=null;
users= jpaTemplate.find("select usp.user,usp.part.id as bid from USP usp where usp.user.name like '"+"%"+name+"%'");
parts= jpaTemplate.find("select usp.part from USP usp where usp.part.id='"+part_id+"'");
Map map=new HashMap();
map.put("users", users);
map.put("parts", parts);
return map;
}








style="margin: 4px">














员工属于哪个部门













姓名 性别 地址 所在部门

你可能感兴趣的:(jquery的ajax 处理后台传来json格式的二维数组)