Hi,
I am auto wiring a class in my Spring Boot application but it throws following error at runtime:
consider defining a bean of type in your configuration. spring boot
How to solve this?
Thanks
Hi,
You should annotate the class with the @Component annotation.
After this it should work fine.
Thanks
Ads