在dao中查询出来的实体
return this.dao.getListByHQL("from 类名");
在controller中要得到这个list,
List<类名> 类名首字母小写= platformOrgService.findAllOrg();
request.setAttribute("类名首字母小写", 类名首字母小写);
本文共 220 字,大约阅读时间需要 1 分钟。
在dao中查询出来的实体
return this.dao.getListByHQL("from 类名");
在controller中要得到这个list,
List<类名> 类名首字母小写= platformOrgService.findAllOrg();
request.setAttribute("类名首字母小写", 类名首字母小写);
转载于:https://my.oschina.net/duanvincent/blog/414672