-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
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
Add defaultResultSetType as global configuration #1056
Add defaultResultSetType as global configuration #1056
Conversation
@harawata Thanks for your reaction! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, @kazuki43zoo !
src/main/java/org/apache/ibatis/builder/annotation/MapperAnnotationBuilder.java
Show resolved
Hide resolved
d93ae87
to
7765a86
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the update, @kazuki43zoo !
LGTM :)
Add defaultResultSetType as global configuration
I want to support the
defaultResultSetType
as global configuration.By this change, we can change a result set type to
SCROLL_SENSITIVE
orSCROLL_INSENSITIVE
from default(FORWARD_ONLY
) by globally (and easily).What do you think for this PR ?
Please review this.
Thanks.