-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spring Data JPA extension - java.lang.ClassNotFoundException: org.springframework.data.domain.Unpaged #8571
Comments
/cc @geoand |
@aureamunoz seems like we need to add that class (and whatever else might be brought transitively) to the api jar. |
Ok, I'll do it |
Hi @pucojazu, |
Hello @aureamunoz, |
oh, yes, ok. For some reason I didn't find either the Upaged class and thought that it was only a method. I'll add it. |
…ng data api. fix quarkusio#8571 chore: update spring-data-api version
…ng data api. fix quarkusio#8571 chore: update spring-data-api version
Describe the bug
I'm getting a ClassNotFoundException in Quarkus 1.3.2.Final with the Spring Data JPA extension when I call
org.springframework.data.domain.Pageable#unpaged
.Expected behavior
Should not throw Exceptions.
Actual behavior
Getting the following Exception at runtime:
To Reproduce
Steps to reproduce the behavior:
Create a Quarkus project with "io.quarkus:quarkus-spring-data-jpa" extension and call
org.springframework.data.domain.Pageable#unpaged
.The text was updated successfully, but these errors were encountered: