标签:roman 就是 技术 图片 代码生成 自动 color 写代码 nbsp
1 hibernate要求实体类里面有一个属性作为唯一值,对应表主键,主键可以不同生成策略
1 <!-- 设置数据库id值生成策略 2 native:生成表id值就是自动增长--> 3 <id name="role_id" column="role_id"> 4 <generator class="native"/> 5 </id>
2 hibernate主键生成策略有很多的值
3 在class属性里面有很多值
(1)native: 根据使用的数据库帮选择哪个值
(2)uuid:之前web阶段写代码生成uuid值,hibernate帮我们生成uuid值
标签:roman 就是 技术 图片 代码生成 自动 color 写代码 nbsp
原文地址:https://www.cnblogs.com/blogxu/p/id.html