I\'ve got some byte[] fields in my entities, e.g.:
byte[]
@Entity public class ServicePicture implements Serializable { private static final long s
I use below and it works for images
@Lob @Column(name = "file", columnDefinition = "LONGBLOB") private byte[] file;