일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- SuperTypeToken
- spring pid
- JUnit
- spring-webmvc
- IntelliJ
- Spring
- spring jpa
- REST API
- spring boot
- ApplicationPidFileWriter
- 톰캣
- tomcat
- JPA mapping
- ORM
- spring bean
- batch
- Spring Data REST
- spring-mvc
- spring boot tomcat
- 코드 리뷰
- Data REST
- 세미나
- JPA
- docker
- spring batch 코드
- Spring Data JPA
- spring-webmvc #코드읽기
- spring camp
- static inner class
- Spring Batch
- Today
- Total
목록JPA mapping (3)
woniper
JPA란 무엇인가?JavaSE 환경에서 JPA 설정 및 CRUDJavaEE 환경(Spring)에서 JPA 설정 및 CRUD@OneToOne, 1:1 관계 매핑@OneToMany / @ManyToOne, 1:N / N:1 관계 매핑@ManyToMany, N:M 관계 매핑Entity 객체 생명주기(Lifecycle)와 Persistence Context Table 관계도 Entity @Entity(name = "tbl_product") public class Product { @Id @GeneratedValue private int productId; private String name; private int price; @ManyToMany(fetch = FetchType.LAZY, cascade = Ca..
JPA란 무엇인가?JavaSE 환경에서 JPA 설정 및 CRUDJavaEE 환경(Spring)에서 JPA 설정 및 CRUD@OneToOne, 1:1 관계 매핑@OneToMany / @ManyToOne, 1:N / N:1 관계 매핑@ManyToMany, N:M 관계 매핑Entity 객체 생명주기(Lifecycle)와 Persistence Context Table 관계도 Entity @Entity(name = "tbl_user") public class User { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Integer userId; private String username; private String nickName; private Str..
JPA란 무엇인가?JavaSE 환경에서 JPA 설정 및 CRUDJavaEE 환경(Spring)에서 JPA 설정 및 CRUD@OneToOne, 1:1 관계 매핑@OneToMany / @ManyToOne, 1:N / N:1 관계 매핑@ManyToMany, N:M 관계 매핑Entity 객체 생명주기(Lifecycle)와 Persistence Context Table 관계도 Entity @Entity public class Person { @Id @GeneratedValue private int id; private String name; @OneToOne @JoinColumn(name = "cellular_id") private Cellular cellular; public Person() {} public ..