读书人

aspectj 引来通知 实例

发布时间: 2012-09-08 10:48:07 作者: rapoo

aspectj 引入通知 实例
你懂的

package com.meiyoudao.test;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import com.meiyoudao.service.BuyPersonBySexService;import com.meiyoudao.service.BuyPersonService;public class BuyPersonTest {public static void main(String[] args) {ApplicationContext app = new ClassPathXmlApplicationContext("MyXml.xml");BuyPersonService buyPerson = (BuyPersonService)app.getBean("buyPerson");buyPerson.buySomebody();BuyPersonBySexService buyPersonSex = (BuyPersonBySexService)buyPerson;buyPersonSex.buyPersonBySex();}}

读书人网 >ASP

热点推荐