-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Visibility of SimpleJpaRepository.ExampleSpecification
#3213
Comments
Fundamentally speaking, I'd really to understand the use case you are attempting to solve that begs you to make changes and alterations to |
Hi @gregturn In short, I wanted to create an extension to the Here are the methods and signatures: Here is the custom repository implementation: I would not be making changes to the class itself, in fact, it can be |
Have you seen that you have all of this flexibility if you use the fluent |
HI @mp911de I was not aware of this API, when was it introduced? I'm still on SB 2.7, and I don't think our organization will migrate to 3.X in the near future. |
It has been introduced with version 3.0. Spring Data JPA 2.7 has reached its OSS EOL by now (Nov 2023) and we will ship only one final OSS release. Given that update, I'm closing the ticket. |
Would it be possible to increase the visibility of
SimpleJpaRepository.ExampleSpecification
fromprivate
toprotected
?I'm developing a custom repository that extends
SimpleJpaRepository
, and would like to reuse this inner class as opposed to copying it from the parent. The class in question:spring-data-jpa/spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support/SimpleJpaRepository.java
Lines 953 to 987 in 018c2ac
The text was updated successfully, but these errors were encountered: