File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
spring-data-jdbc/src/main/java/org/springframework/data/jdbc/repository/config Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ public class JdbcConfiguration {
4646 * @return must not be {@literal null}.
4747 */
4848 @ Bean
49- protected JdbcMappingContext jdbcMappingContext (Optional <NamingStrategy > namingStrategy ) {
49+ public JdbcMappingContext jdbcMappingContext (Optional <NamingStrategy > namingStrategy ) {
5050
5151 JdbcMappingContext mappingContext = new JdbcMappingContext (namingStrategy .orElse (NamingStrategy .INSTANCE ));
5252 mappingContext .setSimpleTypeHolder (jdbcCustomConversions ().getSimpleTypeHolder ());
@@ -63,7 +63,7 @@ protected JdbcMappingContext jdbcMappingContext(Optional<NamingStrategy> namingS
6363 * @return must not be {@literal null}.
6464 */
6565 @ Bean
66- protected RelationalConverter relationalConverter (RelationalMappingContext mappingContext ) {
66+ public RelationalConverter relationalConverter (RelationalMappingContext mappingContext ) {
6767 return new BasicJdbcConverter (mappingContext , jdbcCustomConversions ());
6868 }
6969
@@ -75,7 +75,7 @@ protected RelationalConverter relationalConverter(RelationalMappingContext mappi
7575 * @return must not be {@literal null}.
7676 */
7777 @ Bean
78- protected JdbcCustomConversions jdbcCustomConversions () {
78+ public JdbcCustomConversions jdbcCustomConversions () {
7979 return new JdbcCustomConversions ();
8080 }
8181}
You can’t perform that action at this time.
0 commit comments