JPA 检索到的对象的 id 丢失
我有一个带有整数 id 字段的简单对象,如下所示:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(unique = true, nullable = false)
private int id;
对象可以正确保存到数据库中。但是,当通过以下方式从数据库检索对象时:
EntityManagerFactory emFactory = Persistence.createEntityManagerFactory("MyService");
EntityManager entityManager = emFactory.createEntityManager();
MyObject myObject = entityManager.find(MyObject.class, 1);
entityManager.close();
检索到的对象的 id 字段始终为零,但所有其他字段的值都能正确检索。
如果我从代码中删除 @Id 注释,则可以像所有其他字段一样正确检索 id 字段的值。
我将 OpenJPA 与 MS SQL Server 2008 一起使用。MS sqljdbc 驱动程序和 JTDS 驱动程序都经过测试。
I have a simple object with an integer id field as followings:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(unique = true, nullable = false)
private int id;
Objects can be persisted into database correctly. However, when retrieving object from the database by:
EntityManagerFactory emFactory = Persistence.createEntityManagerFactory("MyService");
EntityManager entityManager = emFactory.createEntityManager();
MyObject myObject = entityManager.find(MyObject.class, 1);
entityManager.close();
The id field of a retrieved object is always zero, but values of all other fields are retrieved correctly.
If I remove the @Id annotation from the code, the value of id field can be retrieved correctly just like all other fields.
I'm using OpenJPA with MS SQL Server 2008. Both MS sqljdbc driver and JTDS driver are tested.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是使用 eclipse 插件进行增强时的已知错误。我强烈建议采用另一种增强构建时间的方法增强。请随意向 OpenJPA 用户邮件列表发布其他问题。
This is a known bug when enhancing using the eclipse plugin. I'd highly recommend getting another method of build time enhancement going. Feel free to post additional questions to the OpenJPA users mailing list.