标签:style 使用 sp 数据 on bs size 算法 数据库
increment:由Hibernate自动以递增的方式生成标识符,适用于代理主键;
identity:由底层数据库生成标识符,适用于代理主键;
sequcence:由Hibernate根据底层数据库的序列生成标识符,适用于代理主键;(MySQL不适用)
hilo:由Hibernate根据high/low算法生成标识符,适用于代理主键;
native:根据底层数据库对自动生成标识符的支持能力,来选择identity/sequcence/hilo,适用于代理主键。
使用increment生成的表是没使用auto increment的,而使用identity或native生成的表就使用了auto increment
标签:style 使用 sp 数据 on bs size 算法 数据库
原文地址:http://www.cnblogs.com/sidianshui/p/4112594.html