JPA 中的深度拷贝
我想在JPA中制作一个实体的深度副本。我在这里发现了一个有趣的讨论:http://forums.java.net/jive/thread.jspa?messageID=253092&tstart=0
听起来,所提出的解决方案是将所有@Id设置为零。这是我的基本代码:
//Start a JPA session.
EntityManager em= emf.createEntityManager();
em.getTransaction().begin();
//Get the object I want to copy.
MyClass myObject=em.find(MyClass.class,id);
//Use reflection to find @Id's and set them to zero for all @OneToMany and @OneToOne relations.
//TODO: write the ugly recursive code to do this.
//Hoping this will create a deep copy.
em.merge(myObject);
//Close the session.
em.getTransaction().commit();
em.close();
这是一个好的策略吗?有没有人已经编写了这个TODO代码,他们可以分享???
谢谢!