Hi all,
I'm new to hibernate and i'm developing an application using java 7 (trying to take advantage of the new file APIs)
the new API java.nio.file.Path is not yet recognized by hibernate, and therefor I get the following exception:
Code:
Caused by: org.hibernate.MappingException: Could not determine type for: java.nio.file.Path, at table: FILES, for columns: [org.hibernate.mapping.Column(FILE)]
Path does not implement Serializable and therefor is not supported with the current layout.
Is there a workaround for this? I'm not familiar enough with Custom User Type to understand if this is the way round...)
Thanks