일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- JUnit
- 톰캣
- spring bean
- spring-mvc
- spring pid
- 코드 리뷰
- JPA mapping
- SuperTypeToken
- ORM
- Spring Batch
- batch
- spring camp
- static inner class
- Spring Data JPA
- spring batch 코드
- Spring Data REST
- docker
- Data REST
- 세미나
- spring boot tomcat
- spring-webmvc
- tomcat
- REST API
- spring jpa
- JPA
- IntelliJ
- Spring
- ApplicationPidFileWriter
- spring-webmvc #코드읽기
- spring boot
- Today
- 6
- Total
- 912,929
목록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 ..