oracle注解生成整形主键策略

前端之家收集整理的这篇文章主要介绍了oracle注解生成整形主键策略前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


@Id
@Column(name="channel_id",nullable = false)
@TableGenerator(name="channelId",allocationSize=1)
@GeneratedValue(strategy=GenerationType.TABLE,generator="channelId")
public Integer getChannelId() {
return channelId;
}


//注意: 继承BaseDao的dao层注入的范型因为 Integer;

原文链接:https://www.f2er.com/oracle/211103.html

猜你在找的Oracle相关文章