
Collection::getOne 메소드는 Entity를 조회할 때 사용하는 메소드입니다. EntityRepository를 사용하는 것이 일반적이지만, Collection::getOne 메소드를 사용할 수도 있습니다.
EntityRepository를 사용하는 이유는 Entity를 조회할 때 EntityNotFoundException이 발생할 수 있기 때문입니다. EntityNotFoundException은 Entity가 존재하지 않는다는 의미입니다.
그러나 Collection::getOne 메소드를 사용할 경우, EntityNotFoundException이 발생할 수 있지만 NullPointerException도 발생할 수 있습니다. 이는 Entity가 존재하지 않더라도 Collection::getOne 메소드를 호출할 경우 NullPointerException이 발생할 수 있기 때문입니다.
따라서 EntityRepository를 사용하는 것이 일반적이며, EntityNotFoundException이 발생할 수 있으므로 주의해야 합니다.
2025-04-04 03:52