简体   繁体   中英

Error with @ManyToOne - JPA/Hibernate Detached Entity Passed to Persist

Good Evening,

I am relatively new to using Hibernate, and I am running into the following error:

"message": "org.springframework.web.util.NestedServletException: Request processing failed; 
nested exception is org.springframework.dao.InvalidDataAccessApiUsageException: detached entity passed to persist: 
com.company.project.data.relational.models.ListsItems; nested exception is org.hibernate.PersistentObjectException: 
detached entity passed to persist: com.company.project.data.relational.models.ListsItems",

I have a JSON object being sent from the front-end that has a nested object. I am trying to get the the nested items in a separate table in MySQL, with a relationship using the original objects ID.

Here's an example of the JSON:

{
    "name":"Test",
    "type":"App Id List",
    "listItems":
    [
        {
            "id":1,
            "name":"Test",
            "value":" 1"
        },
        {
            "id":2,
            "name":"NEW TEST",
            "value":" 2"
        }
    ]
}

Here is my Lists model:

@Entity
@Getter
@Setter
@NoArgsConstructor
@Table(name = "lists")
public class Lists implements Serializable, OperationalEntity {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private long id;

    @Column(columnDefinition = "char", nullable = false)
    private String guid;
    private String name;
    private String type;

    @OneToMany(fetch = FetchType.EAGER, mappedBy = "listItems", orphanRemoval = true)
    @Cascade({org.hibernate.annotations.CascadeType.ALL, })
    private Set<ListsItems> listItems;

    private Date created;
    private Date updated;

}

And here is my ListsItems model:

@Getter
@Setter
@Entity
@Table(name = "lists_items")
@NoArgsConstructor
public class ListsItems implements Serializable {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private long id;

    private String name;
    private String value;

    @NaturalId
    @ManyToOne(optional = false, fetch = FetchType.EAGER)
    @JoinColumn(name = "lists_id", referencedColumnName = "id")
    private Lists listItems;

}

Here is the save function:

@PostMapping(value = "/add")
    @PreAuthorize("hasRole('ADMIN')")
    public @ResponseBody WebResponse<W> create(@RequestBody W webModel) {
        D dbModel = asDbModel(webModel);
        dbModel.setGuid(UUID.randomUUID().toString());
        return WebResponse.success(createWebModelFromDbModel(getDatabaseEntityRepository().save(dbModel)));
    }

Any ideas on what might be causing this error? I've searched a bit but nothing I've tried from any other solutions have worked out.

Thanks in advance!
- Travis W.

The answer was to make the following changes to ListItems:

    @JsonIgnore // this import will be from jackson
    @NaturalId
    @ManyToOne(optional = false, fetch = FetchType.LAZY)
    @JoinColumn(name = "lists_id", referencedColumnName = "id")
    private Lists list;

And the following to Lists:

@OneToMany(fetch = FetchType.EAGER, mappedBy = "list", orphanRemoval = true)
    @Cascade({org.hibernate.annotations.CascadeType.ALL, })
    private Set<ListsItems> listItems;

I also needed to iterate over the results:

@Override
    protected Lists asDbModel(WebLists webModel) {
        Lists dbModel = new Lists();
        dbModel.setId(webModel.getId());
        dbModel.setName(webModel.getName());
        dbModel.setType(webModel.getType());
        dbModel.setListItems(webModel.getListItems());
        for(ListsItems item : webModel.getListItems()) {
            item.setList(dbModel);
        }
        return dbModel;

    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM