When I am debugging in eclipse I want to step into the code lstEmployees method of personBUS but I get warning Source not found.
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;
It seems that the Eclipse
projectwherepersonBUSexists is different from theproject, this code is.You have to add the project of
personBUSto the build path of the current project. This can be done as follows :Right Click on project –> Configure Build Path –> Go to
Projectstab –> Select the project wherepersonBUSobject’sclassexists.