FindById와 GetById의 차이가 뭐임? 일단 JPA의 getById와 findById의 코드를 살펴보자. # getById * getById 코드 public T getById(ID id) { Assert.notNull(id, "The given id must not be null!"); return this.em.getReference(this.getDomainClass(), id); } * getById 주석 Returns a reference to the entity with the given identifier. Depending on how the JPA persistence provider is implemented this is very likely to always return a..