-
Notifications
You must be signed in to change notification settings - Fork 377
DATAJDBC-329 - Replacing JdbcConfiguration. #116
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
Conversation
Reverting breaking changes to JdbcConfiguration. Deprecating JdbcConfiguration in favor of AbstractJdbcConfiguration. Cleaning up the API to separate it from spring-data-relational and therefore R2DBC.
| @@ -0,0 +1,109 @@ | |||
| /* | |||
| * Copyright 2017-2019 the original author or authors. | |||
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.
Inception year is 2019.
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.
I was thinking about that. Since it is actually a copy of the JdbcConfiguration I thought keeping the inception date would be appropriate.
What do you think?
| * @return must not be {@literal null}. | ||
| */ | ||
| @Bean | ||
| public JdbcConverter relationalConverter(RelationalMappingContext mappingContext) { |
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.
How about naming this bean jdbcConverter to avoid clashes with other relational converters?
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.
arg, missed that.
mp911de
left a comment
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.
I left a few comments. Feel free to merge this one afterwards.
Reverting breaking changes to JdbcConfiguration. Deprecating JdbcConfiguration in favor of AbstractJdbcConfiguration. Cleaning up the API to separate it from spring-data-relational and therefore R2DBC. Original pull request: #116.
Applied review feedback. Original pull request: #116.
|
Thanks for the help @mp911de |
Reverting breaking changes to JdbcConfiguration.
Deprecating JdbcConfiguration in favor of AbstractJdbcConfiguration.
Cleaning up the API to separate it from spring-data-relational and therefore R2DBC.