基于Java的配置和扫描

前端之家收集整理的这篇文章主要介绍了基于Java的配置和扫描前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在我的xml配置文件中,我可以写

 

现在我继续进行基于java的配置.如何在没有ApplicationContext的情况下在基于@Configuration的类中执行此操作?

最佳答案
您可以在配置类中使用@ComponentScan批注.

示例:

@Configuration
@ComponentScan("com.acme.app.services")
 public class AppConfig {
     @Bean
     public MyBean myBean() {
         // instantiate,configure and return bean ...
     }
 }
原文链接:https://www.f2er.com/spring/431992.html

猜你在找的Spring相关文章