Java有限級樹(遞歸)超適用案例。本站提示廣大學習愛好者:(Java有限級樹(遞歸)超適用案例)文章只能為提供參考,不一定能成為您想要的結果。以下是Java有限級樹(遞歸)超適用案例正文
如下所示:
@Override public String getEmployeeBysup(String employeeID) { String str=""; str = getEmployeeBysupSelas(employeeID, str); return str.substring(0, str.lastIndexOf(",")); } @Override public String getEmployeeBysupSelas(String employeeID, String str) { str+="'"+employeeID+"',"; System.out.println(str); String sql="SELECT u.employeeID from tbl_system_user u where supervisorID='"+employeeID+"'"; List<String> list= jdbcTemplate.queryForList(sql, String.class); if(list!=null&&list.size()>0){ for(int i=0;i<list.size();i++){ str = getEmployeeBysupSelas(list.get(i), str); } } return str; }
以上就是為大家帶來的Java有限級樹(遞歸)超適用案例全部內容了,希望大家多多支持~