코틀린 JPA 순환참조 문제 발생
문제점 코틀린에서 JPA를 사용중이며 LhJpaRepositoryImpl 클래스에서 LhJpaRepository 인터페이스를 생성자 주입을 통해 사용중이었다. @Repository class LhJpaRepositoryImpl( val lhJpaRepository: LhJpaRepository ): LhRepository { override fun create(lhNotice: LhNotice) { lhJpaRepository.save(LhNoticeEntity().fromModel(lhNotice)) } override fun searchById(id: Long): LhNotice { val lhNoticeEntity = lhJpaRepository.findById(id).orElseThrow{Exce..