ObjectDeletedException « Delete « JPA Q&A





1. ObjectDeletedException: deleted entity passed to persist    stackoverflow.com

I have two entities like the below: Device:

@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, mappedBy = "device")
private Set<DeviceLine> deviceLines;
DeviceLine:
@ManyToOne
@JoinColumn(name = "device_uid")
private Device device;
DeviceComponent Manager.Class:
DeviceLinePersistenceManager dlpm = new DeviceLinePersistenceManager();
try {
    dpm ...

2. Hibernate - ObjectDeletedException: deleted object would be re-saved by cascade...    coderanch.com

Hi I have a parent class(Person) and a child class (UploadedFile) All updates, inserts work fine but deletes do not. I get this error i get this error ObjectDeletedException: deleted object would be re-saved by cascade (remove deleted object from associations) if this is called person.getPhotos.remove(0); and then this is called session.update(person) Does the child UploadedFile need to have a person ...

3. ObjectDeletedException: deleted object would be re-saved by    forum.hibernate.org

Newbie Joined: Sat Oct 17, 2009 7:34 am Posts: 9 Hi I have a parent class(Person) and a child class (UploadedFile) All updates, inserts work fine but deletes do not. I get this error i get this error ObjectDeletedException: deleted object would be re-saved by cascade (remove deleted object from associations) if this is called person.getPhotos.remove(0); and then this is called ...

4. Trying to get a deleted object --> ObjectDeletedException    forum.hibernate.org

Hi, I am doing some tests (see the code below), I instantiate a new Worker object, set some properties, save it, delete it and after the deletion try to retrieve it from the database. I was expecting a null pointer returned but get a ObjectDeletedException. The first time, I was using the load method (session) but I red I should use ...

5. session.delete() session.get() throws ObjectDeletedException    forum.hibernate.org

11:21:09,673 INFO [DefaultLoadEventListener] Error performing load command org.hibernate.ObjectDeletedException: The object with that id was deleted: [SomePersistentObject#2c9f828f04f5bf510104f5bf91cf0020] at org.hibernate.event.def.DefaultLoadEventListener.throwObjectDeletedIfNecessary(DefaultLoadEventListener.java:401) at org.hibernate.event.def.DefaultLoadEventListener.loadFromSessionCache(DefaultLoadEventListener.java:391) at org.hibernate.event.def.DefaultLoadEventListener.doLoad(DefaultLoadEventListener.java:296) at org.hibernate.event.def.DefaultLoadEventListener.load(DefaultLoadEventListener.java:113) at org.hibernate.event.def.DefaultLoadEventListener.proxyOrLoad(DefaultLoadEventListener.java:167) at org.hibernate.event.def.DefaultLoadEventListener.onLoad(DefaultLoadEventListener.java:79) at org.hibernate.impl.SessionImpl.get(SessionImpl.java:621) at org.hibernate.impl.SessionImpl.get(SessionImpl.java:614) ...

6. org.hibernate.ObjectDeletedException: deleted entity passed    forum.hibernate.org

I am having a bidirectional relationship between objects. And have cascade all defined on the opposite side e.g. DeskImpl Class =========== @OneToMany(mappedBy="desk", fetch = FetchType.EAGER, cascade = { CascadeType.ALL }, targetEntity = BookImpl.class) public Set getBooks() { return books; } BookImpl.class =========== @ManyToOne(fetch = FetchType.EAGER, targetEntity = DeskImpl.class) @JoinColumn(name = "oid_desk") public Desk getDesk() { return desk; } I have a ...