All Questions
2 questions
-1
votes
1
answer
72
views
Data not save in the database table
I created sample java project and try to save data with JPA. able to connect with the database as well as able to create the related database table(named laptop) as well as. But when i try to save ...
0
votes
1
answer
3k
views
Hibernate: need update parent entity without pulling all its child-cascade
I faced the problem when I need to partially udate data in BD.
What I have:
I have three linked entities:
Profile --(1-m)--> Person --(1-1)--> Address
Where Person -> Address is lazy relationship. ...