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
Right now @resultMap looks like
public @interface ResultMap { String value(); }
So it looks like only one resultmap can be specified, but in fact it accepts setting the value like this way:
@resultMap("rm1,rm2")
I suggest changing the signature to:
public @interface ResultMap { String[] value(); }
So it is evident that it supports more than one resultMap and will be used like:
@resultMap("rm1") for one @resultMap({"rm1","rm2"}) for more than one
We should keep compat with the old method.
The text was updated successfully, but these errors were encountered:
b750800
emacarron
No branches or pull requests
Right now @resultMap looks like
So it looks like only one resultmap can be specified, but in fact it accepts setting the value like this way:
@resultMap("rm1,rm2")
I suggest changing the signature to:
So it is evident that it supports more than one resultMap and will be used like:
@resultMap("rm1") for one
@resultMap({"rm1","rm2"}) for more than one
We should keep compat with the old method.
The text was updated successfully, but these errors were encountered: