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
- 버전 문자열 비교
- Protecle
- fractional seconds
- yml
- mysql not equal null
- https
- 1*1000
- mysql =
- deserializer
- +9:00
- 오블완
- AuditingEntityListener
- MYSQL
- load order
- spring boot
- @CreateDate
- NamedEntityGraph
- MSSQL
- sendFractionalSeconds
- getEntityGraph
- apatch poi
- getDateCellValue
- 티스토리챌린지
- createEntityGraph
- @EntityListeners
- RootGraph
- EmbeddedId
- mysql equal null
- 운동해서 광명찾자
- pooled-lo
Archives
- Today
- Total
목록EmbeddedId (1)
Hello
[JPA] 일대일 조인 테이블 @EmbeddedId 사용
@Embeddable, @EmbeddedId를 사용해 일대일 조인테이블 Entity 만드는 방법을 간단하게 정리합니다. @Entity public class Buff { @Id @GeneratedValue private Integer id; private Integer type; private Integer value; } @Entity public class User { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; } @Entity public class BuffUser { @EmbeddedId private BuffUserPk id; @MapsId("userId") @ManyToOne @JoinColumn(name ..
java
2023. 10. 12. 18:06