All Questions
Tagged with hibernate-cache hibernate-session
2 questions
1
vote
0
answers
171
views
Hibernate Returns Wrong List From Cache Even Expected List is Different Than the Cached One
In the code below if I don't clear current session, just the number of girls is returned from the method even if I want to return number of all children of this parent.
It's clearly seen that parent ...
0
votes
1
answer
1k
views
Reading data with hibernate does not synchronize with the database
I am using hibernate to interact with the database. Insert, delete, update operations there is no problem because of they are ended by a commit statements session.getTransaction.commit().
But While ...