일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 멱등활용
- @Table
- DB방언
- gitrevert
- fixedDelay
- Transaction not successfully started
- org.apache.ibatis.binding.BindingException
- http
- hibernate.dialect
- Git
- SpringBoot
- RFC723x
- KAKAOLOGINAPI
- initialDelay
- 데이터베이스 방언
- gitreset
- HTTPMESSAGE
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- anyMatch
- 자바ORM표준프로그래밍
- 네이버로그인API
- 무상태프로토콜
- @Entity
- Invalid bound statement (not found)
- 캐쉬가능
- 매핑정보가없는필드
- 김영한JPA
- 네이버 연결된 서비스
- JPA
- HTTP3
Archives
- Today
- Total
twocowsong
@Lob 본문
깃허브 정리 URL : https://github.com/sWineTake/jpa.git
@Lob는 DB에 BLOB, CLOB 타입과 매핑합니다.
MySql에서는 longtext 타입으로 매핑합니다.
@Lob는 지정할 수 있는 속성이 없습니다. 대신에 매핑하는 필드 타입이 문자면 CLOB로, 나머지는 BLOB로 매핑합니다.
CLOB : String, char[], java.sql.CLOB
BLOB : byte[], java.sql.BLOB
@Lob사용 예는 다음과 같습니다.
@Lob
private String description;
@Lob
private byte[] lobByte;
생성된 DDL은 다음과 같습니다.
// 오라클
description clob,
lobByte blob
// MySql
description longtext,
lobByte longblob
// PostgreSQL
lobString text,
lobByte oid
'IT > JPA' 카테고리의 다른 글
중간 정리 (0) | 2022.05.21 |
---|---|
@Transient (0) | 2022.05.21 |
@Temporal (0) | 2022.05.20 |
@Enumerated (0) | 2022.05.19 |
필드와 컬럼 매핑 : @Column (0) | 2022.05.18 |