2 questions from the last 7 days
1
vote
1
answer
39
views
Spring Boot 4 upgrade hibernate jpa json functions incubated
When upgrading to Spring Boot 4 (Hibernate 7) you can get the message that the json functions are incubated, i.e. default its turned off. It will then tell you to set hibernate.query.hql....
1
vote
1
answer
40
views
CrudRepository List<T> query of parent entity T with OneToMany child entity returns a lazy list of parent entities
Can someone explain to me the following behavior I'm seeing. I have the following simple setup.
@Entity
public class Contract {
@Id
private Long id;
//...
@OneToMany(mappedBy="...