I\'m developing an application using:
I just had to add this annotation:
@Column(columnDefinition="TEXT")
It did not work on its own. I had to recreate the table in the database.
DROP TABLE yourtable or just alter column type to text with ALTER TABLE statement
DROP TABLE yourtable
text
ALTER TABLE