gpt4 book ai didi

java - Beanutils.copyProperties 与 protected 设置方法

转载 作者:行者123 更新时间:2023-11-30 11:04:30 25 4
gpt4 key购买 nike

有没有办法让 BeanUtils 使用 protected setXXX(X x) 方法?或者您知道执行此操作的其他方法吗?

类似于:

public class A{
private String text;

public String getText(){
return this.text;
}
protected void setText(String text){
this.text = text;
}
}
public class B{
private String text;

public String getText(){
return this.text;
}
protected void setText(String text){
this.text = text;
}
}

public static void main(String[] args){
A a = new A();
a.setText("A text");
B b = new B();
BeanUtils.copyProperties(b, a);
System.out.println(b.getText()); //A text
}

最佳答案

尝试使用 BULL (Bean Utils Light Library)

public static void main(String[] args) {
A a = new A();
a.setText("A text");
B b = BeanUtils.getTransformer(B.class).apply(a);
System.out.println(b.getText()); //A text
}

关于java - Beanutils.copyProperties 与 protected 设置方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29990286/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com