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
AutoOperate.resolveOperationsFromCurrentElement
示例代码如下:
@ArgAutoOperate({@AutoOperate(value = "arg", type = Map.class, resolveOperationsFromCurrentElement = true)}) public Map<String, Object> test(@Assemble(key = "id", container = "test", prop = "name") Map<String, Object> arg) { return r; }
当自动填充参数 arg 时,设置了 resolveOperationsFromCurrentElement = true,并且直接在参数上通过 @Assemble 注解配置了填充操作,实际执行时不生效。
arg
resolveOperationsFromCurrentElement = true
@Assemble
The text was updated successfully, but these errors were encountered:
fix: @AutoOperate#resolveOperationsFromCurrentElement no work (GitHub
@AutoOperate#resolveOperationsFromCurrentElement
31ddb29
#258)
85bdf92
Createsequence
No branches or pull requests
示例代码如下:
当自动填充参数
arg
时,设置了resolveOperationsFromCurrentElement = true
,并且直接在参数上通过@Assemble
注解配置了填充操作,实际执行时不生效。The text was updated successfully, but these errors were encountered: