JPA Relationship
JPA Entity Relationship? DB에서는 fk로 일대다, 다대일 관계가 연결이 되지만 JPA 에서의 Entity 관계는 크게 4가지 종류로 표현된다. @ManyToOne @OneToOne @OneToMany @ManyToMany
JPA Entity Relationship? DB에서는 fk로 일대다, 다대일 관계가 연결이 되지만 JPA 에서의 Entity 관계는 크게 4가지 종류로 표현된다. @ManyToOne @OneToOne @OneToMany @ManyToMany
What is JPA Entity? Entity는 JPA진영에서 Database의 테이블의 한 로우 해당하는 객체이다. Entity로 인해 객체와 테이블이 Mapping되어 관리되는 ORM의 핵심이라고 볼 수 있다.
What is the Entity Manager? 참고 https://docs.jboss.org/hibernate/entitymanager/3.6/reference/en/html_single/ API https://docs.oracle.com/javaee/7/api/javax/p...
What is the [persistence.xml] file? 참고 https://docs.oracle.com/cd/E16439_01/doc.1013/e13981/undejdev003.htm#CHDIDBBF persistence.xml은 엔티티를 사용하는 EJB 3.0 appl...
What is JPA? JPA는 Java Persistence API의 약자이다. 자바진영의 ORM 기술 표준(인터페이스) 이다. (TIP : JPA는 인터페이스고 구현체는 보통 Java진영에선 Hibernate를 쓴다.) 기존 EJB의 Entity Bean을 대체하는 기술...