企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
两者都能作为配置类被spring扫描管理 @Configuration 里面也引用了@Component, @Configuration默认使用代理, 这里面加@bean注解的对象,多次获取返回的是同一个对象, 而@Component配合@bean,默认不开启代理, 每次获取生成的是不同的 ![](https://img.kancloud.cn/9e/37/9e37a6a6870f82cbc918d973a0da133d_698x473.png) 还遇到过一个在idea上提示Could not autowire. No beans of 'RedisService' type found. , 换成@Component 就不提示了, RedisService 里面也是@Component 注解。这个提示有可能是某个idea插件提示的, 不过运行没影响,加那个都运行起来了。 ![](https://img.kancloud.cn/3f/e8/3fe8666b14860783a41a3bf602858a78_853x356.png)