Good morning,
In my database MySQL , I have a column of type longText.
My question is how to declare the type and annotation of this variable in the java class. In brief research I found the following information:
@Blob
private String meuCampo;
Does this apply?
Thank you!