Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなデータベースのテーブルのエンティティがあります。
それらの関係は1対多であることがわかります。ドットのIDDotはID列です。MaSoDuThuongのIDMSはID列です。通常、1つのレコードを2つのテーブルに挿入できますが、他のページでは、 IDDotの値がわかっているときに、 MaSoDuThuongテーブルにレコードを挿入する必要があります。plsは私がするのを助けます!
Dot dot = entityManager.getReference(Dot.class, dotId); MaSoDuThuong m = new MaSoDuThuong(); m.setDot(dot); em.persist(m);
それと同じくらい簡単です。