Entity 테이블에 대응하는 클래스입니다. Entities in JPA are nothing but POJOs representing data that can be persisted to the database. An entity represents a table stored in a database. Every instance of an entity represents a row in the table. 출처 : https://www.baeldung.com/jpa-entities EntityManager Entity 객체를 관리하는 역할을 합니다. 여기서 관리란 Entity의 Life Cycle입니다. 이는 나중에 따로 포스팅 하겠습니다. EntityManager는 관리하는 Entity를 Persis..