Action
/** * 根据登陆用户id获取新任务 */ public String getProjectByUserId() { List<Project> list = projectService.getList(state, receiveUserId); String jsonResult = JSONArray.fromObject(list).toString(); try { response.getWriter().write(jsonResult); } catch (Exception e) { e.printStackTrace(); } return null; }
service
/** * 根据登陆用户的id获得任务列表 */ public List<Project> getList(int flag,int userId);
impl
@Override public List<Project> getList(int flag, int userId) { List<Project> list = projectDaoUtil.getList("from Project p where p.state=? and p.receiveUser.id =?", new Object[] { flag, userId }, new Type[] { new IntegerType(), new IntegerType() }); return list; }