-
Notifications
You must be signed in to change notification settings - Fork 87
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
QueryDslSupport does not support Repositories to be declared in different maven modules #62
Comments
Got it to work :/ If you want to have reusable JPARepository implementations in separate modules, you have to always specify |
Sorry, I did not see this earlier. Seems you figured it out yourself. That is nice. However, I do not get where you had to specify the |
The stacktrace from spring-data and esp. the root cause error message is kind of confusing, but if you read it carefully you get that the repository does not implement newDslAlias. That is what only happens if GenericRepositoryFactoryBean is used to create the repository. |
I am facing the following issue.
My setup is
For any reason the creation of the JpaRepository thinks, that there is a property 'newDslAlias' in the UserEntity class, but until now I could not find any reason for that. I would be happy for help.
The text was updated successfully, but these errors were encountered: