如何从JPA中的数据库中检索字节数组

时间:2018-10-25 16:06:28

标签: jpa

@Entity
public class MyImage implements Serializable {

    @Id 
    @Column(nullable = false, length = 20)
    private long id;
    @Lob
    private byte[] picture;

    public MyImage(long id, byte[] picture) {
        this.id = id;
        this.picture = picture;
    }

    public MyImage() {
    }

}

0 个答案:

没有答案
相关问题