Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 스프링
- 알고리즘
- Proxy
- pointcut
- java
- spring
- springdatajpa
- kotlin
- 스프링 핵심 기능
- JDBC
- Servlet
- QueryDSL
- JPQL
- 백준
- Spring Boot
- 김영한
- Android
- 스프링 핵심 원리
- Greedy
- jpa
- AOP
- transaction
- Exception
- 자바
- http
- Thymeleaf
- 인프런
- SpringBoot
- 그리디
- db
Archives
- Today
- Total
목록@Interitance (1)
개발자되기 프로젝트
[예제] 상속관계 매핑
1. 요구사항 추가 상품의 종류는 음반, 도서, 영화가 있고 이후 더 확장이 될 수 있어 모든 데이터는 등록일과 수정일이 필수! 2. 도메인 모델 3. 도메인 모델 상세 4. 테이블 설계 5. Item class @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @DiscriminatorColumn @Entity @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @DiscriminatorColumn public abstract class Item { @Id @GeneratedValue() //default = auto. @Column(name = "ITEM_ID") private Long id; Hibernate..
인프런/[인프런] 자바ORM 표준 JPA 프로그래밍
2021. 8. 11. 22:42