I would like to know if there is any way I can store a fileAttachment directly into the database with JPA.
I have an attribute:
public fileAttachement logo;
I have tried to change it to:
@Lob
public byte[] logo;
But that s not doing what I was expecting.