Using hibernate and mysql 5.5, I am trying to persist String value in TEXT type column of database table.
Tired to set String value in the mentioned column and trie
remove the @Lob and @Size annotations, and use @Type(type="text") instead
WORKED. Thanks @Maurice and @Funtik