JPA, Mysql Blob returns data too long

后端 未结 3 1180
情歌与酒
情歌与酒 2020-12-07 20:19

I\'ve got some byte[] fields in my entities, e.g.:

@Entity
public class ServicePicture implements Serializable {
    private static final long s         


        
3条回答
  •  盖世英雄少女心
    2020-12-07 20:34

    I use below and it works for images

    @Lob
    @Column(name = "file", columnDefinition = "LONGBLOB")
    private byte[] file;
    

提交回复
热议问题