标签:
@Component、@Service、@Constroller,@Repository,它们分别用于软件系统的不同层次:
为了让 Spring 能够扫描类路径中的类并识别出 @Repository 注解,需要在 XML 配置文件中启用Bean 的自动扫描功能,这可以通过<context:component-scan/>实现
<beans … > …… <context:component-scan base-package=”bookstore.dao” /> …… </beans>
@Component、@Service、@Constroller
标签:
原文地址:http://www.cnblogs.com/liaojie970/p/4805819.html