コード例 #1
0
 public Person find(Long id) {
   return dao.find(id);
 }
コード例 #2
0
 public Person[] find(Long... ids) {
   return dao.find(ids);
 }