JPA1 [JPA] save, saveAll 성능차이 JPA 내부 소스 ( SimpleJpaRepository.class ) save 메서드 @Transactional public S save(S entity) { Assert.notNull(entity, "Entity must not be null."); if (this.entityInformation.isNew(entity)) { this.em.persist(entity); return entity; } else { return this.em.merge(entity); } } saveAll 메서드 @Transactional public List saveAll(Iterable entities) { Assert.notNull(entities, "Entities must not be null!"); List .. 2022. 9. 5. 이전 1 다음 반응형