JPA 응용 기본으로 제공되는 Repository CrudRepository PagingAndSotringRepository JpaRepository 만으로는 모든 Query를 처리하기에 매우 한계가 있다. 예를 들면 Mybatis는 xml 파일에서 if, choose, where, set 등 수많은 옵션? 을 제공하는데 JPA도 이와 비슷하게 구현할수 있다. Entity JPA 응용 방법 _ Specification에서 사용될 기본 Entity입니다. 기본 Repository public interface UserRepository extends Repository { // Create, Update User save(User user); // Read // Find By Method는 단순할 경우에만..