python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How does CriteriaQuery isNull slow down hibernate query?
What makes this query perform differently?
CriteriaBuilder builder;
CriteriaQuery criteria;
Root root;
criteria.where(builder.anyOtherCondition()); // runs at a reasonable speed
criteria.where(builde...
Sally Mwalr
Votes: 0
Answers: 0
How do I do a JPA findAllBy native query for an object's property value when that object is within a List object, within an outer object?
I am trying to code the matchmaking feature of my game web-app, the User entity contains a property, UserStats with a OneToMany relationship which stores a list of 2 UserStat JPA entitites, these user...
devo9191
Votes: 0
Answers: 1
Are Objects inside of other objects being saved to the database?
I hope someone understands, what I mean by this question. I try to explain it as good as possible:
I want to save an object, which is a JPA-entity to the database, by using
accountRepository.save(acc...

Z-100
Votes: 0
Answers: 0