I have two classes
class Deptartment{
int deptid,
String deptname;
List<Employee> employees;
}
class Employee{
int empid;
String empname;
int deptid;
}
Table:
Department:
deptid,deptname
Employee
empid,empname,deptid
Query: select * from deptartment d,employee e where d.deptid= e.deptid
Now how can i populate Department object using spring jdbc template?
To help Sean Patrick Floyd, here’s his solution with a single query :
It happens to be shorter and more efficient.