I've got a String column defined with
@Column(length = 4000)
The attribute contains log information and can be longer than the defined length. In this case, the field can be safely truncated without throwing an error message.
I'd like to find out the determined length of the column in the DAO class for the pojo so that I can truncate the string if necessary. How can I do that?
Regards,
Chris