유저 프로필 기술 블로그 5편: 응답 DTO 최적화와 Kafka 연동 흐름 정리1. UserProfileResponse DTO란?유저의 공개 프로필 정보를 클라이언트에게 전달할 때 사용하는 응답 객체이다.@Getter@Builderpublic class UserProfileResponse { private Long userId; private String nickname; private String profileImageUrl; private String introduction; private String gender; private String location; private List genres; private List interests;}장르 및 관심사는 ..