假设你从数据库查到集合的是userList
JsonConfig jsonConfig = new JsonConfig();
jsonConfig.setIgnoreDefaultExcludes(false);//设置过滤条件
jsonConfig.setExcludes(new String[]{"user","role"});
//过滤关联属性并封装成Json对象。
JSONObject jGridVo = JSONObject.fromObject(userList,jsonConfig);