spring3 Annotation

spring3.0使用annotation完全代替XML
來源: http://www.iteye.com/topic/740301

<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



你可能感兴趣的:(java,spring,mvc,bean,IOC)