간만에 자바..1. DB 1회 조회 + 자바단 그루핑 vs 반복문 내부 다중 DB 조회🅰️ 패턴 A: 반복문 안에서 DB 여러 번 조회 (N+1 문제)의식의 흐름 버전 (많이들 처음에 이렇게 생각함):List studentList = repository.selectStudentList(); // 학생 전체 조회for (Student s : studentList) { List subjects = repository.selectSubjectListByStudentId(s.getStudentId()); // 학생별 과목 s.setSubjectList(subjects);}selectStudentList() → 1번학생이 100명 → selectSubjectListByStudentId(...