Polish
This commit is contained in:
@@ -20,7 +20,9 @@ import com.datastax.driver.core.Cluster;
|
||||
|
||||
/**
|
||||
* Callback interface that can be implemented by beans wishing to customize the
|
||||
* {@link Cluster} via {@link Cluster.Builder} retaining its default auto-configuration.
|
||||
* {@link com.datastax.driver.core.Cluster} via
|
||||
* {@link com.datastax.driver.core.Cluster.Builder} retaining its default
|
||||
* auto-configuration.
|
||||
*
|
||||
* @author Eddú Meléndez
|
||||
* @since 1.5.0
|
||||
@@ -28,7 +30,7 @@ import com.datastax.driver.core.Cluster;
|
||||
public interface ClusterBuilderCustomizer {
|
||||
|
||||
/**
|
||||
* Customize the {@link Cluster.Builder}.
|
||||
* Customize the {@link com.datastax.driver.core.Cluster.Builder}.
|
||||
* @param clusterBuilder the builder to customize
|
||||
*/
|
||||
void customize(Cluster.Builder clusterBuilder);
|
||||
|
||||
@@ -30,7 +30,7 @@ public enum SearchStrategy {
|
||||
|
||||
/**
|
||||
* Search all parents and ancestors, but not the current context.
|
||||
* @deprecated since 1.5 in favor of {@link SearchStrategy#ANCESTORS}
|
||||
* @deprecated as of 1.5 in favor of {@link SearchStrategy#ANCESTORS}
|
||||
*/
|
||||
@Deprecated PARENTS,
|
||||
|
||||
|
||||
@@ -85,7 +85,7 @@ abstract class DataSourceConfiguration {
|
||||
/**
|
||||
* DBCP DataSource configuration.
|
||||
*
|
||||
* @deprecated as of Spring Boot 1.5 in favor of DBCP2
|
||||
* @deprecated as of 1.5 in favor of DBCP2
|
||||
*/
|
||||
@ConditionalOnClass(org.apache.commons.dbcp.BasicDataSource.class)
|
||||
@ConditionalOnProperty(name = "spring.datasource.type", havingValue = "org.apache.commons.dbcp.BasicDataSource", matchIfMissing = true)
|
||||
|
||||
Reference in New Issue
Block a user