Interface DialectResolver.JdbcDialectProvider
- All Superinterfaces:
DialectResolver.JdbcDialectProvider
- All Known Implementing Classes:
DialectResolver.DefaultDialectProvider
- Enclosing class:
DialectResolver
@Deprecated(since="3.5",
forRemoval=true)
public static interface DialectResolver.JdbcDialectProvider
extends DialectResolver.JdbcDialectProvider
Deprecated, for removal: This API element is subject to removal in a future version.
SPI to extend Spring's default JDBC Dialect discovery mechanism. Implementations of this interface are discovered
through Spring's
SpringFactoriesLoader mechanism.- Since:
- 2.0
- Author:
- Jens Schauder
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetDialect(JdbcOperations operations) Deprecated, for removal: This API element is subject to removal in a future version.Returns aDialectfor aDataSource.
-
Method Details
-
getDialect
Deprecated, for removal: This API element is subject to removal in a future version.Returns aDialectfor aDataSource.- Specified by:
getDialectin interfaceDialectResolver.JdbcDialectProvider- Parameters:
operations- theJdbcOperationsto be used with theDialect.- Returns:
Optionalcontaining theDialectif theDialectResolver.JdbcDialectProvidercan provide a dialect object, otherwiseOptional.empty().
-
DialectResolverwas moved to theorg.springframework.data.jdbc.core.dialectpackage.