We Are Going To Discuss About Consider defining a bean of type ‘com.repository.UserRepository’ in your configuration. So lets Start this Java Article.
Consider defining a bean of type ‘com.repository.UserRepository’ in your configuration
- Consider defining a bean of type 'com.repository.UserRepository' in your configuration
Adding the following annotation in the main spring boot application class solved the issue in my case:
@ComponentScan(“com.myapp.repositories”) - Consider defining a bean of type 'com.repository.UserRepository' in your configuration
Adding the following annotation in the main spring boot application class solved the issue in my case:
@ComponentScan(“com.myapp.repositories”)
Solution 1
Adding the following annotation in the main spring boot application class solved the issue in my case:
@ComponentScan(“com.myapp.repositories”)
Original Author jayesh Of This Content
Solution 2
Your @EnableJpaRepositories
annotation is wrong. You don’t define the package where the repositories are found this way.
Assuming that the package they reside is called:
foo.somepackage.repositories
then you annotation should be @EnableJpaRepositories("foo.somepackage.repositories")
.
Try correcting the annotation in order to properly and correctly scan your repositories package in order to bring them into context.
Original Author akortex Of This Content
Solution 3
I think your code has to be organized under com.xyz.abc.model
and the @EnableJpaRepostiories
should work.
eg: com.xyz.abc.repository
, com.xyz.abc.service
Original Author lakshmanvvs Of This Content
Solution 4
Just put AppointmentPaymentServiceImpl
and UserRepository
in the same package which for me was com.
Original Author MonirRouissi Of This Content
Conclusion
So This is all About This Tutorial. Hope This Tutorial Helped You. Thank You.