Hibernate - How to persist only the parent, keeping the children as they are

前端 未结 3 837
我寻月下人不归
我寻月下人不归 2020-12-09 12:57

Can someone please help me understand how to configure hibernate to do what i want.

I have a parent entity \"Appartment\" with a List of \"Room\"s as children. I hav

相关标签:
3条回答
  • 2020-12-09 13:37

    Instead of using persistent entities, consider using DTOs (you can call them a page model in the case of web pages). They can give you a flexibility to depict information you want and show it in the format you want. But you should pay for this - you're adding new classes to your system and you have to come up with a way to transform entities to DTOs and backward.

    0 讨论(0)
  • 2020-12-09 13:43

    This is really simple. No need to repopulate your children, or create separate DTO's.

    If you are never going to persist the children just add insertable=false, updatable=false to your joincolumn annotation. Like this:

    @OneToMany
    @JoinColumn (name = "appartmentId", insertable = false, updatable = false)
    @Fetch(value = FetchMode.JOIN)
    private List<Room> room;
    
    0 讨论(0)
  • 2020-12-09 13:48
    1. Don't disable lazy fetching in a mapping. Use fetching strategies for performance tuning.
    2. Hibernate will only remove the Rooms from an Apartment if you tell it to save/update an Apartment that has no Rooms in it.
    0 讨论(0)
提交回复
热议问题