I am trying to run this basic JPA/EJB code:

public static void main(String[] args){
         UserBean user = new UserBean();
         user.setId(1);
         user.setUserName("name1");
         user.setPassword("passwd1");
         em.persist(user);
  }

I get this error:

javax.ejb.EJBException: javax.persistence.PersistenceException: org.hibernate.PersistentObjectException: detached entity passed to persist: com.JPA.Database

Any ideas?

I search on the internet and the reason I found was:

This was caused by how you created the objects, i.e. If you set the ID property explicitly. Removing ID assignment fixed it.

But I didn't get it, what will I have to modify to get the code working?

link|improve this question

feedback

7 Answers

up vote 12 down vote accepted

ERD

Let's say you have two entities Album and Photo. Album contains many photos, so it's a one to many relationship.

Album class

@Entity
public class Album {
    @Id
    @GeneratedValue(strategy=GenerationType.AUTO)
    Integer albumId;

    String albumName;

    @OneToMany(targetEntity=Photo.class,mappedBy="album",cascade={CascadeType.ALL},orphanRemoval=true)
    Set<Photo> photos = new HashSet<Photo>();
}

Photo class

@Entity
public class Photo{
    @Id
    @GeneratedValue(strategy=GenerationType.AUTO)
    Integer photo_id;

    String photoName;

    @ManyToOne(targetEntity=Album.class)
    @JoinColumn(name="album_id")
    Album album;

}

What you have to do before persist or merge is to set the Album reference in each photos.

        Album myAlbum = new Album();
        Photo photo1 = new Photo();
        Photo photo2 = new Photo();

        photo1.setAlbum(myAlbum);
        photo2.setAlbum(myAlbum);       

That is how to attach the related entity before you persist or merge.

link|improve this answer
feedback

The error you described occurs because the object's ID is set. Hibernate distinguishes between transient and detached objects and persist works only with transient objects. If persist() concludes the object is detached (which it will because the ID is set), it will return the "detached object passed to persist" error. You can find more details here and here.

link|improve this answer
Will I be technically right when I say, I am using JPA and not Hibernate so, that above statement should not apply right? I am newbie in JPA (3 ays to be precise :P) – zengr Mar 14 '10 at 20:01
Sun's JPA Javadoc (java.sun.com/javaee/5/docs/api/javax/persistence/…)) and that of Toplink are exactly the same and suggest you are technically right. However, it really boils down to what the specification says persist() should behave like and sadly, I don't know what that is. – Tomislav Nakic-Alfirevic Mar 14 '10 at 21:07
This solution worked for me. I was persisting an object, keeping the ID stored somewhere. I then want to overwrite that existing object with a new value, so I created the object, copied the ID back in, and it blew up when I tried to save. In the end, I had to requery the DB (findById), make the changes, and then persist that object. – cs94njw Jan 27 at 15:32
feedback

remove

user.setId(1);

because it is auto generate on the DB, and continue with persist command.

link|improve this answer
feedback

I got the answer, I was using:

em.persist(user);

I used merge in place of persist:

em.merge(user);

But no idea, why persist didn't work. :(

link|improve this answer
1  
this is not the solution ! – Ammar Apr 19 '11 at 6:50
i know, but this worked for me. any other answer here which worked for you? if yes, then i will be more than happy to select it. – zengr Apr 19 '11 at 16:26
feedback

I had this problem and it was caused by the second level cache:

  1. I persisted an entity using hibernate
  2. Then I deleted the row created from a separate process that didn't interact with the second level cache
  3. I persisted another entity with the same identifier (my identifier values are not auto-generated)

Hence, because the cache wasn't invalidated, hibernate assumed that it was dealing with a detached instance of the same entity.

link|improve this answer
feedback

em.merge(entityClass); worked for me too!

link|improve this answer
feedback

I am using a MySQL database where the ID field is an auto_increment number. If I set the ID field in the Java Entity to a value other than the value it is set to when doing a new Entity(), I get the "detached entity passed to persist" error. If I set the ID field in the Java Entity to the same value as it is when doing a new Entity(), it works.

In my code, I set the ID field to -1 in the constructor of the Java Entity. If I create a new Entity and set the ID field to something other than -1, I get the detached entity error if I try to persist it. If I create a new Entity and set the ID field to -1, it works.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.