Update broken links in Javadoc.

Closes: #1578
This commit is contained in:
Christoph Strobl
2023-08-03 09:00:05 +02:00
parent d00e928db5
commit e9e21c5918
4 changed files with 5 additions and 5 deletions

View File

@@ -84,7 +84,7 @@ public class BasicJdbcConverter extends BasicRelationalConverter implements Jdbc
private SpELContext spELContext;
/**
* Creates a new {@link BasicRelationalConverter} given {@link MappingContext} and a
* Creates a new {@link BasicJdbcConverter} given {@link MappingContext} and a
* {@link JdbcTypeFactory#unsupported() no-op type factory} throwing {@link UnsupportedOperationException} on type
* creation. Use
* {@link #BasicJdbcConverter(RelationalMappingContext, RelationResolver, CustomConversions, JdbcTypeFactory, IdentifierProcessing)}
@@ -108,7 +108,7 @@ public class BasicJdbcConverter extends BasicRelationalConverter implements Jdbc
}
/**
* Creates a new {@link BasicRelationalConverter} given {@link MappingContext}.
* Creates a new {@link BasicJdbcConverter} given {@link MappingContext}.
*
* @param context must not be {@literal null}.
* @param relationResolver used to fetch additional relations from the database. Must not be {@literal null}.

View File

@@ -29,7 +29,7 @@ import org.springframework.data.util.TypeInformation;
/**
* Unit tests for the handling of {@link AggregateReference}s in the
* {@link org.springframework.data.relational.core.conversion.BasicRelationalConverter}.
* {@link org.springframework.data.jdbc.core.convert.BasicJdbcConverter}.
*
* @author Jens Schauder
*/

View File

@@ -224,7 +224,7 @@ public abstract class AbstractR2dbcConfiguration implements ApplicationContextAw
/**
* Register custom {@link Converter}s in a {@link CustomConversions} object if required. These
* {@link CustomConversions} will be registered with the {@link BasicRelationalConverter} and
* {@link CustomConversions} will be registered with the {@link MappingR2dbcConverter} and
* {@link #r2dbcMappingContext(Optional, R2dbcCustomConversions, RelationalManagedTypes)}. Returns an empty
* {@link R2dbcCustomConversions} instance by default. Override {@link #getCustomConverters()} to supply custom
* converters.

View File

@@ -88,7 +88,7 @@ public interface NamingStrategy {
}
/**
* @deprecated use {@link #getReverseColumnName(AggregatePath)} instead.
* @deprecated use {@link #getReverseColumnName(RelationalPersistentEntity)} instead.
*/
@Deprecated(since = "3.2", forRemoval = true)
default String getReverseColumnName(PersistentPropertyPathExtension path) {