@Retention(value=RUNTIME) @Target(value={FIELD,TYPE_USE}) @Documented public @interface JSON
@Column
@JSON
private MyObject myPojo;
It could be used in nested collections too:
@Column
private List<@JSON MyObject> myPojos;
Copyright © 2012-2021. All Rights Reserved.