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();}}