gpt4 book ai didi

jpa - 在jpa实体中指定lob大小

转载 作者:行者123 更新时间:2023-12-04 07:07:03 26 4
gpt4 key购买 nike

我正在使用openjpa(Websphere Application Server 7)与数据库进行交互。是否可以在Java实体文件中指定Blob大小?看起来像:

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;

@Lob
@Nullable
private byte[] content;

缺省情况下,DB2的大小为1MB。我想将其更改为20MB。

最佳答案

您可以使用@Column批注:

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;

@Lob
@Nullable
@Column(length = 20971520)
private byte[] content;

关于jpa - 在jpa实体中指定lob大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10742572/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com