Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class MappingJdbcConverter extends MappingRelationalConverter implements
* Creates a new {@link MappingJdbcConverter} given {@link MappingContext} and a {@link JdbcTypeFactory#unsupported()
* no-op type factory} throwing {@link UnsupportedOperationException} on type creation. Use
* {@link #MappingJdbcConverter(RelationalMappingContext, RelationResolver, CustomConversions, JdbcTypeFactory)}
* (MappingContext, RelationResolver, JdbcTypeFactory)} to convert arrays and large objects into JDBC-specific types.
* to convert arrays and large objects into JDBC-specific types.
*
* @param context must not be {@literal null}.
* @param relationResolver used to fetch additional relations from the database. Must not be {@literal null}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.springframework.test.context.support.DefaultActiveProfilesResolver;

/**
* A {@link ActiveProfilesResolver} combining the profile configurations from environement, system properties and
* A {@link ActiveProfilesResolver} combining the profile configurations from environment, system properties and
* {@link org.springframework.test.context.ActiveProfiles} annotations.
*
* @author Jens Schauder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public ReactiveDataAccessStrategy reactiveDataAccessStrategy(R2dbcConverter conv

/**
* Creates a {@link org.springframework.data.r2dbc.convert.R2dbcConverter} using the configured
* {@link #r2dbcMappingContext(Optional, R2dbcCustomConversions, RelationalManagedTypes)} R2dbcMappingContext}.
* {@link #r2dbcMappingContext(Optional, R2dbcCustomConversions, RelationalManagedTypes) R2dbcMappingContext}.
*
* @param mappingContext the configured {@link R2dbcMappingContext}.
* @param r2dbcCustomConversions customized R2DBC conversions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public OutboundRow(SqlIdentifier key, Parameter value) {
* expression:
*
* <pre class="code">
* row.append("a", 1).append("b", 2)}
* row.append("a", 1).append("b", 2)
* </pre>
*
* @param key key.
Expand All @@ -113,7 +113,7 @@ public OutboundRow append(String key, Parameter value) {
* expression:
*
* <pre class="code">
* row.append("a", 1).append("b", 2)}
* row.append("a", 1).append("b", 2)
* </pre>
*
* @param key key.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Assign a {@link Expression} to a {@link Column}.
* <p>
* Results in a rendered assignment: {@code <column> = <value>} (e.g. {@code col = 'foo'}.
* Results in a rendered assignment: {@code <column> = <value>} (e.g. {@code col = 'foo'}).
* </p>
* @author Mark Paluch
* @since 1.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Comparing {@link Condition} comparing two {@link Expression}s.
* <p>
* Results in a rendered condition: {@code <left> <comparator> <right>} (e.g. {@code col = 'predicate'}.
* Results in a rendered condition: {@code <left> <comparator> <right>} (e.g. {@code col = 'predicate'}).
* </p>
*
* @author Mark Paluch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* A segment that can be used as table in a query.
*
* @author Jens Schauder
* @Since 2.3
* @since 2.3
*/
public interface TableLike extends Segment {
/**
Expand Down Expand Up @@ -122,10 +122,7 @@ default List<Column> columns(Collection<String> names) {
}

/**
* Creates a {@link AsteriskFromTable} maker selecting all columns from this {@link Table} (e.g. {@code SELECT
*
<table>
* .*}.
* Creates a {@link AsteriskFromTable} maker selecting all columns from this {@link Table} (e.g. {@code SELECT <table>.*}).
*
* @return the select all marker for this {@link Table}.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ static CharSequence render(RenderContext context, Aliased aliased) {
}

/**
* Render the {@link Table#getReferenceName()} table reference name} with considering the
* Render the {@link Table#getReferenceName() table reference name} with considering the
* {@link RenderNamingStrategy#getReferenceName(TableLike) naming strategy}.
*/
static CharSequence reference(RenderContext context, TableLike table) {
return render(context, context.getNamingStrategy().getReferenceName(table));
}

/**
* Render the {@link Column#getReferenceName()} column reference name} with considering the
* Render the {@link Column#getReferenceName() column reference name} with considering the
* {@link RenderNamingStrategy#getReferenceName(Column) naming strategy}.
*/
static CharSequence reference(RenderContext context, Column column) {
Expand Down
Loading