Mention JdbcClient in package documentation

Closes gh-31017
This commit is contained in:
Juergen Hoeller
2023-08-09 23:18:55 +02:00
parent 0c477f14cc
commit b4c61f20e7
2 changed files with 5 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ import org.springframework.jdbc.support.KeyHolder;
import org.springframework.jdbc.support.rowset.SqlRowSet;
/**
* A fluent {@link JdbcClient} with common JDBC query and update operations,
* A fluent {@code JdbcClient} with common JDBC query and update operations,
* supporting JDBC-style positional as well as Spring-style named parameters
* with a convenient unified facade for JDBC PreparedStatement execution.
*

View File

@@ -1,5 +1,8 @@
/**
* Simplification layer for table inserts and stored procedure calls.
* Simplification layer for common JDBC interactions.
*
* <p>{@code JdbcClient} provides a fluent API for JDBC query and update operations,
* supporting JDBC-style positional as well as Spring-style named parameters.
*
* <p>{@code SimpleJdbcInsert} and {@code SimpleJdbcCall} take advantage of database
* meta-data provided by the JDBC driver to simplify the application code. Much of the