Difference between and

前端 未结 15 2671
再見小時候
再見小時候 2020-11-22 04:44

I\'m learning Spring 3 and I don\'t seem to grasp the functionality behind and .

15条回答
  •  醉梦人生
    2020-11-22 05:44

    :

    This tells Spring that I am going to use Annotated beans as spring bean and those would be wired through @Autowired annotation, instead of declaring in spring config xml file.

    :

    This tells Spring container, where to start searching those annotated beans. Here spring will search all sub packages of the base package.

提交回复
热议问题