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