Spring注解@Component、

本文深入解析Spring注解@Component、@Repository、@Service、@Controller的区别及应用,阐述如何通过自动扫描机制简化组件配置,并提供实例演示注入方式与生命周期管理。
Spring注解@Component、@Repository、@Service、@Controller区别
    @Service用于标注业务层组件
    @Controller用于标注控制层组件(如struts中的action)
    @Repository用于标注数据访问组件,即DAO组件
    @Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。
    [java] view plaincopyprint?
    @Service
    public class VentorServiceImpl implements iVentorService {
    }
    @Repository
    public class VentorDaoImpl implements iVentorDao {
    }
    @Service
    public class VentorServiceImpl implements iVentorService {
    }
    @Repository
    public class VentorDaoImpl implements iVentorDao {
    }
    在一个稍大的项目中,如果组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找以及维护起来也不太方便。
    Spring2.5为我们引入了组件自动扫描机制,他在类路径下寻找标注了上述注解的类,并把这些类纳入进spring容器中管理。
    它的作用和在xml文件中使用bean节点配置组件时一样的。要使用自动扫描机制,我们需要打开以下配置信息:
    代码
    [html] view plaincopyprint?
    <?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:annotation-config />
    <context:component-scan base-package="com.eric.spring">
    </beans>
    <?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:annotation-config />
    <context:component-scan base-package="com.eric.spring">
    </beans>
    1.annotation-config是对标记了 Spring's @Required、@Autowired、JSR250's @PostConstruct、@PreDestroy、@Resource、JAX-WS's @WebServiceRef、EJB3's @EJB、JPA's @PersistenceContext、@PersistenceUnit等注解的类进行对应的操作使注解生效。
    2.base-package为需要扫描的包(含所有子包),负责扫描那些类有注解。
    getBean的默认名称是类名(头字母小写),如果想自定义,可以@Service("aaaaa")这样来指定。
    这种bean默认是"singleton"的,如果想改变,可以使用@Scope("prototype")来改变。
    可以使用以下方式指定初始化方法和销毁方法:
    [java] view plaincopyprint?
    @PostConstruct
    public void init() {
    }
    @PreDestroy
    public void destory() {
    }
    @PostConstruct
    public void init() {
    }
    @PreDestroy
    public void destory() {
    }
    注入方式:
    把DAO实现类注入到action的service接口(注意不要是service的实现类)中,注入时不要new 这个注入的类,因为spring会自动注入,如果手动再new的话会出现错误,
    然后属性加上@Autowired后不需要getter()和setter()方法,Spring也会自动注入。
    在接口前面标上@Autowired注释使得接口可以被容器注入,如:
    [java] view plaincopyprint?
    @Autowired
    @Qualifier("chinese")
    private Man man;
    @Autowired
    @Qualifier("chinese")
    private Man man;
    当接口存在两个实现类的时候必须使用@Qualifier指定注入哪个实现类,否则可以省略,只写@Autowired.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值