UserType
hibernate中可以自定义映射属性的类型,例如我实体类中是一个List类型的字段,我想将其存储成json字符串。可以同时实现UserType接口,实现自定义的JsonType。
1 | /** |
JsonType实现
1 | public class JsonType implements UserType { |
使用
1 |
|
hibernate中可以自定义映射属性的类型,例如我实体类中是一个List类型的字段,我想将其存储成json字符串。可以同时实现UserType接口,实现自定义的JsonType。
1 | /** |
1 | public class JsonType implements UserType { |
1 | @Entity |