@Autowired 和 启动类的关系
这是我之前的文件结构:
这时候在 UserController 的构造函数 (有@Autowired 注解)中会报错(Could not autowire. No beans of 'UserRepository' type found.)并且无法正常启动。
然后把 启动类 LearningSpringbootDemoApplication 放到runner 中后就没有问题了。
这是哪方面的原因呢?
这是我之前的文件结构:
这时候在 UserController 的构造函数 (有@Autowired 注解)中会报错(Could not autowire. No beans of 'UserRepository' type found.)并且无法正常启动。
然后把 启动类 LearningSpringbootDemoApplication 放到runner 中后就没有问题了。
这是哪方面的原因呢?
举报