码迷,mamicode.com
首页 > 编程语言 > 详细

Java动态代理

时间:2018-09-05 17:50:36      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:rri   res   art   import   nbsp   r.java   handler   oca   loader   

Fruit.java

package com.wzh.proxy.fruit;

public interface Fruit {
    public void eat();
}

Apple.java

package com.wzh.proxy.fruit.impl;

import com.wzh.proxy.fruit.Fruit;

public class Apple implements Fruit{

    @Override
    public void eat() {
        
        System.out.println("eating apple");
        
    }

}

ProxyHandler.java

package com.wzh.proxy.fruit.proxyhandler;

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;

import com.wzh.proxy.fruit.Fruit;

public class ProxyHandler implements InvocationHandler{
    
    private Fruit fruit;
    
    public ProxyHandler(Fruit _fruit) {
        fruit = _fruit;
    }

    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        
        Object result = null;
        System.out.println("start");
        result = method.invoke(fruit, args);
        System.out.println("over");
        
        return result;
    }

}

Run.java

package com.wzh.proxy.run;

import java.lang.reflect.Proxy;

import com.wzh.proxy.fruit.Fruit;
import com.wzh.proxy.fruit.impl.Apple;
import com.wzh.proxy.fruit.impl.Orange;
import com.wzh.proxy.fruit.proxyhandler.ProxyHandler;

public class Run {

    public static void main(String[] args) {
        
        Orange orange = new Orange();
        ProxyHandler handler = new ProxyHandler(orange);
        Fruit fruitProxy = (Fruit) Proxy.newProxyInstance(orange.getClass().getClassLoader(), orange.getClass().getInterfaces(), handler);
        fruitProxy.eat();
    }
    
}

 

Java动态代理

标签:rri   res   art   import   nbsp   r.java   handler   oca   loader   

原文地址:https://www.cnblogs.com/zhwcs/p/9592039.html

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