-
Notifications
You must be signed in to change notification settings - Fork 41k
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
Some JdbcTemplate configuration properties are missing #44419
Comments
I personally lean towards adding the properties but not the customizer since replacing the |
I wonder if an enum set might also work well for the |
Is |
Just properties sounds good to me.
Along these lines, I'm not sure about a single property as it creates a problem with switching things off. For example, if someone's set I think three separate properties, each defaulting to |
- ignore-warnings - skip-results-processing - skip-undeclared-results - results-map-case-insensitive Fix spring-projectsGH-44419 Signed-off-by: Yanming Zhou <[email protected]>
Superseded by GH-44470 |
Currently, there are three configuration properties under
spring.jdbc.template
:fetch-size
max-rows
query-timeout
there are more configuration properties not covered by
JdbcProperties
:ignore-warnings
skip-results-processing
skip-undeclared-results
results-map-case-insensitive
Before starting to work on this, I would ask the team is it worthy to autoconfigure them by
JdbcProperties
or provide anJdbcTemplateCustomizer
or both?The text was updated successfully, but these errors were encountered: