org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: fourman.backend.domain.member.entity.Member.authentications, could not initialize proxy - no Session
이 방식으로 해결이 되는데 DTO를 쓰는 방법도 있다고한다. 새로운 DTO 객체를 사용하는 경우: 필요한 정보만 포함하는 새로운 DTO 객체를 만들고, getSeats 메서드에서 해당 DTO 객체를 반환하도록 수정합니다. 예를 들어, 클라이언트에게 Seat 및 관련 정보만 반환하는 경우 새로운 SeatResponse DTO를 만듭니다. java Copy code public class SeatResponse { private Long id; private String seatNumber; // 필요한 다른 정보 // 생성자 및 getter, setter } 그런 다음 getSeats 메서드에서 SeatResponse DTO 객체로 변환하고 반환합니다. java Copy code @Transactional..