To Do ListResponseEntity 이해JPA 어노테이션 (@Entity, @Id, @GeneratedValue 등)연관관계 (@ManyToOne, @JoinColumn)Cookie/Session 인증/인가Bean Validation (@Valid 등)Part 1 : ResponseEntity✔️ 개념 설명Spring에서 API를 만들 때, 클라이언트에게 응답을 돌려줄 때 쓰는 클래스일반적으로 그냥 값만 리턴할 수도 있지만, ResponseEntity를 쓰면HTTP 상태 코드 (200, 400, 404 등)응답 헤더응답 바디 (데이터)이 세 가지를 한 번에 제어할 수 있다.✔️ 예시 비교ResponseEntity 없이@GetMapping("/user/{id}")public UserResponse..