This commit is contained in:
Phillip Webb
2016-12-28 15:23:26 -08:00
parent 97d7ffd8e8
commit 8b69856fc9
22 changed files with 64 additions and 41 deletions

View File

@@ -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);

View File

@@ -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,

View File

@@ -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)