@Component @Service @Controller @Repository注解使用
@Component 相当于实例化类的对象。
?
通过在classpath中通过自动扫描方式把组建纳入spring容器管理。
要使用自动扫描机制我们需要打开一下配置信息:
?
Bean.xml代码- <?xml?version="1.0"?encoding="UTF-8"?>??
- <beans?xmlns="http://www.springframework.org/schema/beans"??
- ???????xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"??
- ???????xmlns:context="http://www.springframework.org/schema/context"??
- ???????xsi:schemaLocation="http://www.springframework.org/schema/beans??
- ???????????http://www.springframework.org/schema/beans/spring-beans-2.5.xsd??
- ???????????http://www.springframework.org/schema/context??
- ???????????http://www.springframework.org/schema/context/spring-context-2.5.xsd">??
- ???????????<context:component-scan?base-package="com.zchen"/>??
- </beans>??
?
?
注:前面讲要使用注解需要配置:?<context:annotation-config />但如果使用了@Component就不需要加它了,因为:<context:component-scan base-package="com.zchen">里面默认了<context:annotation-config />。
Java代码- @Component("userService")??
- public?class?UserService?{??
?@Service用于标注业务层组件、
?@Controller用于标注空竹曾组件(如Struts中的action)
?@Repository用于标注数据访问组件即DAO组件
?@Component泛指组件,当组件不好归类的时候我们可以使用这个注解进行标注,(现在可以都用此注解)