错误:单一字段身份
谁能告诉我这个错误的原因:--
“entity.pendingRequest”类的对象使用 SingleFieldIdentity 使用字段“empId”,但该字段尚未设置其值!手动设置字段,或为该字段设置值策略。
Can anybody please tell me the cause of this error:--
An object of class "entity.pendingRequest" uses SingleFieldIdentity using the field "empId" yet this field has not had its value set! Either set the field manually, or set a value-strategy for that field.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从声音上看,您已将
empId
指定为主键,但在尝试存储记录之前未提供值或告诉它如何生成值。From the sound of it, you've designated
empId
as your primary key, but haven't supplied a value, or told it how to generate one, before attempting to store a recored.