InvocationHandler的使用即参数proxy作用
使用案列:
public class TransactionInvocationHandler implements InvocationHandler{
//zs:target
private Object target;
public TransactionInvocationHandler(Object target){
this.target = target;
...
原创
2019-02-21 18:26:41 ·
2014 阅读 ·
0 评论