I am new to spring boot and want to design my own APIs and test them with Postman client. However, I can't get past the following error.
Any opinions on this one? I found similar topics but none of them fix my problem.
I also give you my controller, model, and service classes.
I believe I clearly initialized LectureService reference by using @Autowired annotation. This error keeps bugging me.
Note: I also added
@SpringBootApplication(scanBasePackages = {
"io.theBMan.springBootStarter.lecture"
})
to my App.java class but didn't help as well.