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)
could not find class that it depends on; nested exception is java.lang.NoClassDefFoundError: org/hibernate/query/Query
I'm trying to run a project and the below error is showing
Project configuration:
5.3.6.Final hibernate-version
5.10.3.Final hibernate-search-version
6.0.13.Final hibernate-validator-version
Caused ...

HassanNArts
Votes: 0
Answers: 0
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
@ManyToOne and @OneToMany ends up in unlimited loop when retrieved through profileRepository.getByProfileId(id);
Class Jobs has Many to One relationship with Profile.
When I retrieve through profileRepository.getByProfileId(id) the response returns recursive data.
Also if you notice Profile has Login object. I d...
Warren D'souza
Votes: 0
Answers: 1
Getting error while sending foreign key in json in Springboot REST API?
I am making a simple application. It has two entities i.e Book and Address. Book has author instance because they have one to one relationship. If I am sending author instance in with book it is worki...
Tameer Hussain
Votes: 0
Answers: 1