I am using hibernate, and my classes property is a string, and my mapping doesn't have any type information, ie:
<property name="html" />
I am storing a web page in the html database column, and for some reason the entire page isn't saving, it gets cut off part way.
I outputed the value of the property to console and it does output all the way to the ending </html>
tag.
Does hiberate truncate a string value?
the database column is a nvarchar(max) (sql server)
Turns out it was writing the entire string to the database, just copy and pasting from the database editor was truncating the actual text stored in the db column.