Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数据库模式,其中有一个名为 Vector 的表,该表有一个名为 Name 的列。Name 列定义为 varchar(255)。
我有一个休眠模型实体,它用 @Column 注释,长度指定为 255。
尝试使用 CRUDRepository 持久化对象不会引发关于名称长度的异常,直到长度为 262,这对我来说似乎很奇怪。
想法?我希望分配一个长度为 256 的名称来引发异常。