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.
这些是定义我自己的休眠到数据库对象映射的某种方式吗?例如,默认情况下 String 映射到 varchar(45),我想将其更改为 TEXT 或只是 varchar(245) ,有什么方法可以实现它???
你可以使用
<property name="description" type="string"> <column name="description" length="100" /> </property>
在xml或
@Column(name="description", length=100)
类中的注释。
或者,您可以使用@Type注释 - 有关更多信息,请参见this或this。
@Type
您可能想使用@Type(type="text").
@Type(type="text")