-
Notifications
You must be signed in to change notification settings - Fork 67
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-versions-jpa-boot-starter must add additional config #82
Comments
It is definitely correct that But, point taken on the auto-include we can see what we can do here. I am not sure how much we can influence this but we can at least investigate. |
…guration packages - when jpa versions boot starer is added to the classpath - so that the LockingAndVersioningRepository fragment is found with the need for developer configuration Fixes #82
…guration packages - when jpa versions boot starer is added to the classpath - so that the LockingAndVersioningRepository fragment is found with the need for developer configuration Fixes #82
when depedencies spring-versions-jpa-boot-starter and spring-boot-starter-data-jpa ,
SpringBoot application must also add
@EnableJpaRepositories(basePackages = ["com.example.springcontentdemo", "org.springframework.versions"])
, the packageorg.springframework.versions
shuld be auto include.otherwise JpaAutoConfiguration try to generate method in LockingAndVersioningRepository ,not to delegate to LockingAndVersioningRepositoryImpl
The text was updated successfully, but these errors were encountered: