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)
Why Hibernate automatically perform these queries and give me this jaxon exception trying to return an object?
I am working on a Spring Boot application using Spring Data JPA and Hibernate mapping and I have the following Hibernate problem trying to implement an API intended to enable\disable an user on my app...
AndreaNobili
Votes: 0
Answers: 1
Mapping entities in JPA/Hibernate without adding additional fields (just by using ids)
I'm trying to map those three entities to each other without adding any additional fields to any of them. They should only contain the fields that already exist. I'm also trying to only get columns in...
Greg M.
Votes: 0
Answers: 1
Request Mapping in Java EE
in springMvc we can use in controllers the mapping like so
for example for url=projectName/student/all
@Controller
@RequestMapping("/student")
public class StudentController {
//...
@G...
Jasmine Mel
Votes: 0
Answers: 0
How can I retrieve all the children of a record in this Hibernate @ManyToOne relation?
I am working on a Spring Boot project using Spring Data JPA and Hibernate mapping. I have the following doubt about how can I implement the following query.
I have an User entity class like this:
@Ent...
AndreaNobili
Votes: 0
Answers: 2