spring3.0使用annotation完全代替XML
來源:[url]http://www.iteye.com/topic/740301[/url]
@Autowired, @Required
spring 便会在org.example以及它的子package中查找所有的类,将符合条件的Bean注册在IoC容器当中
@Component, @Serivce, @Controller, @Repository。對應
Service层、Spring MVC、DAO
來源:[url]http://www.iteye.com/topic/740301[/url]
<context:annotation-config/>
@Autowired, @Required
<context:component-scan base-package="org.example"/>
spring 便会在org.example以及它的子package中查找所有的类,将符合条件的Bean注册在IoC容器当中
@Component, @Serivce, @Controller, @Repository。對應
Service层、Spring MVC、DAO