码迷,mamicode.com
首页 > 其他好文 > 详细

基于Schema的引入

时间:2016-06-05 11:09:41      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

 


     <aop:declare-parents
                types-matching="com.itany.service.IPersonService+"
                implement-interface="com.itany.service.IIntroduceService"
                default-impl="com.itany.service.impl.IIntroduceServiceImpl"/>

说明:

  • 配置在<aop:aspect>标签下</aop:aspect>
  • types-matching:匹配需要引入接口的目标对象表达式;
  • implement-interface:定义需要引入的接口;
  • default-impl和delegate-ref:定义引入接口的默认实现,二选一

实例:

        ApplicationContext act=new ClassPathXmlApplicationContext("beans.xml");
        IIntroduceService introduceService = (IIntroduceService) act.getBean("personService");
        introduceService.introduce("testintroduce");
        ((IPersonService) introduceService).save();

从理解上来讲,看认为这个配置实现了introduceService继承了personService

基于Schema的引入

标签:

原文地址:http://www.cnblogs.com/JavaTWW/p/5560185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!