We've decided to move our platform from OJB to Hibernate.
One very useful feature of OJB we made extensive use of was the
conversion capability. It enabled you to do things like persist a collection to a clob or blob column.
Example from OJB mapping:
Code:
<field-descriptor
name="taskStatus"
column="TaskStatus"
jdbc-type="VARCHAR" conversion="com.teradata.tap.system.scheduler.List2StringFieldConversion" />
How would I accomplish this in Hibernate? If not built-in, what would be the recommended way we could build it into our Hibernate wrapper classes (i.e. in preStore or something like that)
TIA,
Alex