Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Entity with @Column length greater than 255 characters

Since the default is 255 how would I specify an "infinite" length to hold information such as a huge text? It should not be a vendor specific solution such as the "columnDefinition" property.

like image 571
Fagner Brack Avatar asked Oct 17 '25 17:10

Fagner Brack


1 Answers

Try a "text" (lob) http://www.postgresql.org/docs/8.0/static/datatype-character.html

@Lob
@Type(type = "org.hibernate.type.TextType")
like image 146
twillouer Avatar answered Oct 19 '25 06:10

twillouer