python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
JPQL SELECT where more than one n:m per left-table entry exists
I did an JPA n:m structure where books(id, name) and authors(id, lastname) has a n:m Relation with a self-made table (bookAuthors) inbetween which has (book.id, authors.id) as combined pk.
Now I want ...
SUT
Votes: 0
Answers: 1
Strange bootloader casting issue caused by different packages: "class [Ljava.lang.Object; cannot be cast to class ([Ljava.lang.Object; "
I'm trying to create a nativeQuery in Spring Boot, but I'm getting a strange bootloader message when I try it:
"class [Ljava.lang.Object; cannot be cast to class com.sick.as.models.common.v1.INor...
Jack BeNimble
Votes: 0
Answers: 1
Does Hibernate core 5.3.7.Final is vulnerable in spring boot project for log4j vulnerability?
For our spring boot project , We are using customized spring boot library and it has been upgraded now.
But during upgrade we have kept older version of hibernate core 5.3.7.Final to support namedNati...
Ganesh Java
Votes: 0
Answers: 2
spring jpa findBy column of inside entity
I have a couple of related entities in a relational DB:
@Entity
public class A {
@Id
@Column(name = "id" ...)
private UUID id;
@OneToMany(mappedBy = "a")
priva...
ldepablo
Votes: 0
Answers: 1