목차

@Lob

MySQL

text 컬럼

// Hibernate 5.x 안해도 작동은 하는데 ddl_auto=validate 를 통과시키려면 해야함.
@Type(type = "org.hibernate.type.TextType")
@Column(name="content", columnDefinition = "text")
private String content;
@Column(name = "doc_txt", length = Length.LONG32)
private String docText;

longtext 컬럼

@Lob
@Column(name="content", columnDefinition = "longtext")
private String content;

참조