no-proxy 和proxy 的区别
Posted 杨荣林
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了no-proxy 和proxy 的区别相关的知识,希望对你有一定的参考价值。
Child <- many-to-one ->Parent
class Child {
private Parent parent;
public Parent getParent (){
return this.parent;//访问了实例变量
}
}
class Parent {
private String name;
public String getName(){
return this.name;//访问了实例变量
}
public void f(){
System.out.println("invokeing f()");//没有访问实例变量
}
}
如果 many-to-one 的lazy设为proxy,当child.getParent().getName()或child.getParent().f()时,parent都会被抓取,若设为no-proxy,调用child.getParent().f()时,parent是不会被抓取的,同时这种方式需要编译时字节码增强,否则和proxy没区别。
以上是关于no-proxy 和proxy 的区别的主要内容,如果未能解决你的问题,请参考以下文章