1 回答

TA貢獻(xiàn)1827條經(jīng)驗 獲得超8個贊
Spring JPA 可以通過使用存儲庫或 @Transactional 注釋來幫助您管理事務(wù)。它基本上包裝了任何方法,因此該方法的核心是在事務(wù)中執(zhí)行的。在您的情況下,調(diào)用personRepository.save(person)將打開一個事務(wù)并將更改提交到數(shù)據(jù)庫。
關(guān)于你的第一個問題,問題來自于你的@OneToOne關(guān)系及其設(shè)置者的實現(xiàn)。調(diào)用child.setPerson(person);不會設(shè)置該人的孩子。因此,當(dāng)調(diào)用 時personRepository.save(person),由于該人的孩子為 null,因此沒有要持久化的 Child 對象。
您要確保保持對象狀態(tài)一致:
Person person = new Person();
person.setId(100L);
person.setName("SomeName");
Child child = new Child();
child.setId(60L);
child.setPerson(person);
person.setChild(child);
personRepository.save(person);
添加回答
舉報