@Autowired 和 启动类的关系

来源:3-2 Spring Boot 多模块 Spring Boot 项目

weixin_慕沐5117881

2021-02-08 10:20

这是我之前的文件结构:

http://img2.mukewang.com/60209ed0000193e604980530.jpg

这时候在 UserController 的构造函数 (有@Autowired 注解)中会报错(Could not autowire. No beans of 'UserRepository' type found.)并且无法正常启动。

然后把 启动类 LearningSpringbootDemoApplication 放到runner 中后就没有问题了。

http://img2.mukewang.com/60209fae000143aa04950276.jpg

这是哪方面的原因呢?

写回答 关注

2回答

  • 诡异的叶子
    2022-06-13 15:56:04

    引用的porm估计路径不对

  • qq_一朵悠哉悠哉的小花_03447731
    2021-07-21 11:01:13

    看下你的UserRepository类 有没有添加@Repository 注解

Spring Boot 2.0深度实践-初遇Spring Boot

Spring Boot 2.x/Web Flux/多模块化项目实践

75471 学习 · 212 问题

查看课程

相似问题