其他分享
首页 > 其他分享> > 在不使用组件扫描的情况下在Spring中自动注释注释

在不使用组件扫描的情况下在Spring中自动注释注释

作者:互联网

是否可以使用@Autowired注释自动装配bean而不使用组件扫描?

解决方法:

是. < context-component-scan .. />负责发现使用@ Component,@ Controller,@ Service,@ Respository等注释的bean.

为了处理注释(@Autowired,@ Resource等),您需要< context:annotation-config />.因此,将在applicationContext.xml中列出的bean上处理注释.

据我所知,< context-component-scan .. />激活< context:annotation-config />自动.

对于弹簧2.5和3.0都是如此. (谢谢skaffman)

标签:dependency-injection,spring,ioc-container,autowired
来源: https://codeday.me/bug/20190701/1343263.html