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
装配操作支持指定多个数据源容器,当从第一个容器无法获得数据时,按顺序依次尝试从后续几个容器获取,直到取得数据或全部容器都无法取得数据为止。
使用方式如下:
@Assemble( container = { "container1", "container2", "container3" }, prop = "name" ) private Integer id; private String name;
=选项式配置由于与数据源高度绑定,因此目前很难做到这样的效果,这部分的功能后续再想想看如何实现。
The text was updated successfully, but these errors were encountered:
Createsequence
No branches or pull requests
你的依赖版本与运行环境
描述你的问题或需求
装配操作支持指定多个数据源容器,当从第一个容器无法获得数据时,按顺序依次尝试从后续几个容器获取,直到取得数据或全部容器都无法取得数据为止。
问题复现代码或需求的示例代码
使用方式如下:
=选项式配置由于与数据源高度绑定,因此目前很难做到这样的效果,这部分的功能后续再想想看如何实现。
The text was updated successfully, but these errors were encountered: