當我在eclipse中調試時,我想進入personBUS的代碼lstEmployees方法,但我得到警告未找到源。在eclipse源代碼中調試未發現警告
Map<String,Object> m =new HashMap<String,Object>();
List l = personBUS.lstEmployees();
m.put("data", l);
m.put("totalCount",l.size());
m.put("success", true);
return m;
添加此方法的代碼。 – Simulant