Closed greenlaw110 closed 5 years ago
With the following bean classes:
public class Foo { public String name; public int level; public boolean flag; } public class Bar { public String name; public Foo foo; }
Given the following bean copy with filter:
Bar source = ...; Bar target = $.deepCopy(source).filter("-foo,+foo.name").to(Bar.class);
Expected:
bar.name,bar.foo.name
Found:
With the following bean classes:
Given the following bean copy with filter:
Expected:
bar.name,bar.foo.name
data copiedFound: