Spring基础入门三:基于@Component,@Service,@Controller,@Repositroy自动扫描方式把组件纳入Spring容器中管理
使用@Component,@Service,@Controller,@Repositroy可以完成不用XML配置也可以将Java组件交给Spring容器
JavaBean代码如下:
package autoScan.dao;
public interface StudentDao {
public abstract void add();
}
@Repositor