@bean注解一个问题?

发布于 2022-09-13 00:11:54 字数 350 浏览 14 评论 0

@Bean
    public RestTemplate initRestTemplate(){
        return new RestTemplate();
    }

这样注册了一个bean以后

为什么

@Autowired
    private RestTemplate restTemplate;

可以自动装配成功

我的问题是:

bean注册的id应该是方法名的小写驼峰
那在自动装配的时候应该用initRestTemplate才能找到的吧?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

聚集的泪 2022-09-20 00:11:55

@Autowired 是按类型匹配的。

Make sure that your target components (for example, MovieCatalog or CustomerPreferenceDao) are consistently declared by the type that you use for your @Autowired-annotated injection points. Otherwise, injection may fail due to a "no type match found" error at runtime.

https://docs.spring.io/spring...

少女情怀诗 2022-09-20 00:11:55

Resource的话才会让你指定beanName,或者Autowired 搭配Qualifier指定beanName,单独用Autowired ,类型匹配

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文