我hibernate.hbm2ddl.auto
用来创建我的表。
像这样创建我的专栏:
@Column(name = "foo", length = 8000)
private String foo;
这将创建一个表和字段:varchar(8000)
我需要的是,我可以string
在那里节省超过 8000 元。像20000或更多。
更改length
高于时8000
,它不会创建表。
手动更改字段时,它会说:
The size (20000) given to the column 'foo' exceeds the maximum allowed for
any data type (8000).