We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
目前,Crane4j 通过 @Disassemble 注解支持的拆卸操作实际上是先递归全部嵌套对象,最后再统一填充。
@Disassemble
实际场景中,会有类似构建树结构的这种需求,比如下述这种情况:
public class A { private Integer bid; private B b; } public class B { private Integer cid; private C c; }
使用时,需要:
这个需求可以考虑通过一个新执行器 BeanOperationsExecutor 实现。
BeanOperationsExecutor
The text was updated successfully, but these errors were encountered:
feat(BeanOperationExecutor): support for performing operations in a r…
2b4c47f
…ecursive manner (GitHub #311)
865c7a4
23cfd02
No branches or pull requests
目前,Crane4j 通过
@Disassemble
注解支持的拆卸操作实际上是先递归全部嵌套对象,最后再统一填充。实际场景中,会有类似构建树结构的这种需求,比如下述这种情况:
使用时,需要:
这个需求可以考虑通过一个新执行器
BeanOperationsExecutor
实现。The text was updated successfully, but these errors were encountered: