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 | 29 | 30 | 31 |
Tags
- Greedy
- 그리디
- http
- jpa
- Thymeleaf
- db
- Spring Boot
- QueryDSL
- pointcut
- 스프링 핵심 원리
- springdatajpa
- 자바
- JPQL
- 인프런
- java
- kotlin
- transaction
- Proxy
- 백준
- 김영한
- 스프링
- spring
- SpringBoot
- Android
- Exception
- JDBC
- AOP
- 알고리즘
- 스프링 핵심 기능
- Servlet
Archives
- Today
- Total
목록@DiscriminatorColumn (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