property 의 존재 유무만 확인하면 되는데default Property getById(Long propertyId) { return findById(propertyId) .orElseThrow(() -> new EntityNotFoundException(ErrorCode.NOT_FOUND)); }property의 모든 필드를 조회하는 것은 과하다고 생각이 되었다. property의 id는 @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id;auto increment설정이 되어 있어 자동으로 부여된다. 즉, id가 있으면 property 는 존재 property의 i..