Spring AOP-01-前置加強 MethodBeforeAdvice

一、須要加強的類java

package com.test.springadvicetype;

import org.springframework.stereotype.Component;

import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * 服務員類
 */
@Component
public class Waiter {
    /**
     * 服務
     * @param name
     */
    public String serve(String name) {
        System.out.println(name + ",您好,很高興爲您服務。");
        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
        return name + ",您好,如今是北京時間" + format.format(new Date());
    }

    /**
     * 開車
     * @param name
     */
    public void driving(String name) {
        throw new RuntimeException(name + ",您好,禁止酒後駕車!");
    }
}

二、方法調用前加強,實現 MethodBeforeAdvice 接口spring

package com.test.springadvicetype.afterretuningadvice;

import org.springframework.aop.MethodBeforeAdvice;
import org.springframework.stereotype.Component;

import java.lang.reflect.Method;

/**
 * 前置加強實現類
 */
@Component
public class SpringBeforeAdvice implements MethodBeforeAdvice {
    @Override
    public void before(Method method, Object[] args, Object target) throws Throwable {
        String methodName = method.getName();
        System.out.printf("MethodBeforeAdvice加強的方法是%s%n", methodName);
        System.out.printf("MethodBeforeAdvice加強的方法的參數是%s%n", args[0]);
        System.out.printf("MethodBeforeAdvice加強的對象是%s%n", target);
    }
}

三、xml配置,spring-chapter3-springaoptype.xmlide

<?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:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/aop 
http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context.xsd">
    <!-- 開啓註解掃描 -->
    <context:component-scan base-package="com.test.springadvicetype"/>
</beans>

四、運行程序測試

package com.test.springadvicetype.beforeadvice;

import com.test.springadvicetype.Waiter;
import org.springframework.aop.framework.ProxyFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * Spring前置加強測試
 */
public class SpringBeforeAdviceDemo {

    public static void main(String[] args) {
        System.out.println("Spring前置加強測試");
        System.out.println("==========我是分割線==========");
        ApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring-chapter3-springaoptype.xml");
        Waiter waiter = (Waiter) context.getBean("waiter");
        SpringBeforeAdvice advice = (SpringBeforeAdvice) context.getBean("springBeforeAdvice");
        //Spring提供的代理工廠
        ProxyFactory pf = new ProxyFactory();
        //設置代理目標
        pf.setTarget(waiter);
        pf.addAdvice(advice);
        //生成代理實例
        Waiter proxy = (Waiter)pf.getProxy();
        proxy.serve("Michael");
        System.out.println("==========我是分割線==========");
        proxy.serve("Tommy");
    }
}

五、運行結果spa

Spring前置加強測試
==========我是分割線==========
MethodBeforeAdvice加強的方法是serve
MethodBeforeAdvice加強的方法的參數是Michael
MethodBeforeAdvice加強的對象是com.test.springadvicetype.Waiter@5276e6b0
Michael,您好,很高興爲您服務。
==========我是分割線==========
MethodBeforeAdvice加強的方法是serve
MethodBeforeAdvice加強的方法的參數是Tommy
MethodBeforeAdvice加強的對象是com.test.springadvicetype.Waiter@5276e6b0
Tommy,您好,很高興爲您服務。
相關文章
相關標籤/搜索