I'm using Hibernate Annotations.
In my POJO I have a year field which is an int.
I would like to persist this value in a char(4) column in my DB, and have hibernate convert the types back and forth. Is there anyway I can easily do this (I started to look into the @Type annotation, but don't want to have to write my own custom type if possible)?
If the POJO 's field that is mapped to DB 's char(4) column is access by property , hibernate will then call its setter and getter for the mapping between the database and the POJO . Thus , the conversion logic can be implemented inside the setter and getter of this property. Besides , intDate should be mark as @Transient to tell hibernate to ignore mapping this field.