spring-jdbc 简介、中文文档、中英对照文档 下载

SpringJDBC提供了一个抽象层,简化了JDBC的使用,包括JdbcTemplate和相关接口。文章列出了不同版本的SpringJDBC的jar包、API文档(中文版和中英对照版)的下载链接,便于开发者获取和学习。同时,文档包括了对JDBC的解释,它是Java访问数据库的标准接口。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

spring-jdbc 文档 下载链接(含jar包、源码、pom)

组件名称中文-文档-下载链接中英对照-文档-下载链接
spring-jdbc-4.2.2.RELEASE.jarspring-jdbc-4.2.2.RELEASE-API文档-中文版.zipspring-jdbc-4.2.2.RELEASE-API文档-中英对照版.zip
spring-jdbc-4.3.12.RELEASE.jarspring-jdbc-4.3.12.RELEASE-API文档-中文版.zipspring-jdbc-4.3.12.RELEASE-API文档-中英对照版.zip
spring-jdbc-4.3.20.RELEASE.jarspring-jdbc-4.3.20.RELEASE-API文档-中文版.zipspring-jdbc-4.3.20.RELEASE-API文档-中英对照版.zip
spring-jdbc-5.0.10.RELEASE.jarspring-jdbc-5.0.10.RELEASE-API文档-中文版.zipspring-jdbc-5.0.10.RELEASE-API文档-中英对照版.zip
spring-jdbc-5.0.5.RELEASE.jarspring-jdbc-5.0.5.RELEASE-API文档-中文版.zipspring-jdbc-5.0.5.RELEASE-API文档-中英对照版.zip
spring-jdbc-5.0.8.RELEASE.jarspring-jdbc-5.0.8.RELEASE-API文档-中文版.zipspring-jdbc-5.0.8.RELEASE-API文档-中英对照版.zip
spring-jdbc-5.1.3.RELEASE.jarspring-jdbc-5.1.3.RELEASE-API文档-中文版.zipspring-jdbc-5.1.3.RELEASE-API文档-中英对照版.zip
spring-jdbc-5.2.0.RELEASE.jarspring-jdbc-5.2.0.RELEASE-API文档-中文版.zipspring-jdbc-5.2.0.RELEASE-API文档-中英对照版.zip
spring-jdbc-5.2.15.RELEASE.jarspring-jdbc-5.2.15.RELEASE-API文档-中文版.zipspring-jdbc-5.2.15.RELEASE-API文档-中英对照版.zip
spring-jdbc-5.2.7.RELEASE.jarspring-jdbc-5.2.7.RELEASE-API文档-中文版.zipspring-jdbc-5.2.7.RELEASE-API文档-中英对照版.zip
spring-jdbc-5.3.10.jarspring-jdbc-5.3.10-API文档-中文版.zipspring-jdbc-5.3.10-API文档-中英对照版.zip
spring-jdbc-5.3.15.jarspring-jdbc-5.3.15-API文档-中文版.zipspring-jdbc-5.3.15-API文档-中英对照版.zip
spring-jdbc-5.3.7.jarspring-jdbc-5.3.7-API文档-中文版.zipspring-jdbc-5.3.7-API文档-中英对照版.zip

spring-jdbc 简介

Spring JDBC

Spring JDBC提供了一个抽象层,它简化了使用JDBC的代码和数据库供应商特定错误代码的解析。

Java数据库连接,(Java Database Connectivity,简称JDBC)是Java语言中用来规范客户端程序如何来访问数据库的应用程序接口,提供了诸如查询和更新数据库中数据的方法。JDBC也是Sun Microsystems的商标。我们通常说的JDBC是面向关系型数据库的。

在这里插入图片描述

spring-jdbc 中文文档、中英对照文档 说明

摘要:org.springframework、spring-jdbc、中文文档、中英对照文档、下载、包含jar包、原API文档、源代码、Maven依赖信息文件、翻译后的API文档、springframework、spring、jdbc、中英对照文档、jar包、java;

使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。

人性化翻译,文档中的代码和结构保持不变,注释和说明精准翻译,请放心使用。

双语对照,边学技术、边学英语。

涉及的包(package)

spring-jdbc 5.3.7 API

Packages  
PackageDescription
org.springframework.jdbc
The classes in this package make JDBC easier to use and reduce the likelihood of common errors.

此包中的类使JDBC更轻松地使用并降低常见错误的可能性。

org.springframework.jdbc.config
Defines the Spring JDBC configuration namespace.

定义Spring JDBC配置命名空间。

org.springframework.jdbc.core
Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects.

提供基于JDBCTEMPLATER及其相关的回调接口和辅助对象的核心JDBC框架。

org.springframework.jdbc.core.metadata
Context metadata abstraction for the configuration and execution of table inserts and stored procedure calls.

上下文元数据抽象为表插入和存储过程调用的配置和执行。

org.springframework.jdbc.core.namedparam
JdbcTemplate variant with named parameter support.

jdbctemplate变体,具有命名参数支持。

org.springframework.jdbc.core.simple
Simplification layer for table inserts and stored procedure calls.

表插入和存储过程调用的简化层。

org.springframework.jdbc.core.support
Classes supporting the org.springframework.jdbc.core package.

支持org.springframework.jdbc.core包的类。

org.springframework.jdbc.datasource
Provides a utility class for easy DataSource access, a PlatformTransactionManager for a single DataSource, and various simple DataSource implementations.

提供一个实用程序类,用于轻松数据源访问,一个单个数据源的平台触发管理器以及各种简单的数据源实现。

org.springframework.jdbc.datasource.embedded
Provides extensible support for creating embedded database instances.

提供用于创建嵌入式数据库实例的可扩展支持。

org.springframework.jdbc.datasource.init
Provides extensible support for initializing databases through scripts.

提供可扩展支持,可通过脚本初始化数据库。

org.springframework.jdbc.datasource.lookup
Provides a strategy for looking up JDBC DataSources by name.

提供策略按名称查找JDBC数据源。

org.springframework.jdbc.object
The classes in this package represent RDBMS queries, updates, and stored procedures as threadsafe, reusable objects.

此包中的类代表了RDBMS查询,更新和存储过程作为Threadsafe,可重用对象。

org.springframework.jdbc.support
Support classes for the JDBC framework, used by the classes in the jdbc.core and jdbc.object packages.

支持jdbc框架的类,由jdbc.core和jdbc.Object软件包中的类使用。

org.springframework.jdbc.support.incrementer
Provides a support framework for incrementing database table values via sequences, with implementations for various databases.

提供支持框架,用于通过序列递增数据库表值,具有各种数据库的实现。

org.springframework.jdbc.support.lob
Provides a strategy interface for Large OBject handling, as well as a customizable default implementation.

提供用于大型对象处理的策略界面,以及可自定义的默认实现。

org.springframework.jdbc.support.rowset
Provides a convenient holder for disconnected result sets.

为断开结果集提供方便的持有者。

org.springframework.jdbc.support.xml
Abstraction for handling fields of SQLXML data type.

用于处理SQLXML数据类型的字段的抽象。

涉及的类(class)

AbstractColumnMaxValueIncrementer

AbstractDataFieldMaxValueIncrementer

AbstractDataSource

AbstractDriverBasedDataSource

AbstractFallbackSQLExceptionTranslator

AbstractIdentityColumnMaxValueIncrementer

AbstractInterruptibleBatchPreparedStatementSetter

AbstractJdbcCall

AbstractJdbcInsert

AbstractLobCreatingPreparedStatementCallback

AbstractLobHandler

AbstractLobStreamingResultSetExtractor

AbstractRoutingDataSource

AbstractSequenceMaxValueIncrementer

AbstractSqlParameterSource

AbstractSqlTypeValue

ArgumentPreparedStatementSetter

ArgumentTypePreparedStatementSetter

BadSqlGrammarException

BatchPreparedStatementSetter

BatchSqlUpdate

BatchUpdateUtils

BeanFactoryDataSourceLookup

BeanPropertyRowMapper

BeanPropertySqlParameterSource

CallableStatementCallback

CallableStatementCreator

CallableStatementCreatorFactory

CallMetaDataContext

CallMetaDataProvider

CallMetaDataProviderFactory

CallParameterMetaData

CannotGetJdbcConnectionException

CannotReadScriptException

ColumnMapRowMapper

CompositeDatabasePopulator

ConnectionCallback

ConnectionHandle

ConnectionHolder

ConnectionProperties

ConnectionProxy

CustomSQLErrorCodesTranslation

CustomSQLExceptionTranslatorRegistrar

CustomSQLExceptionTranslatorRegistry

DatabaseMetaDataCallback

DatabasePopulator

DatabasePopulatorUtils

DatabaseStartupValidator

DataClassRowMapper

DataFieldMaxValueIncrementer

DataSourceFactory

DataSourceInitializer

DataSourceLookup

DataSourceLookupFailureException

DataSourceTransactionManager

DataSourceUtils

Db2CallMetaDataProvider

Db2LuwMaxValueIncrementer

Db2MainframeMaxValueIncrementer

DB2MainframeSequenceMaxValueIncrementer

DB2SequenceMaxValueIncrementer

DefaultLobHandler

DelegatingDataSource

DerbyCallMetaDataProvider

DerbyMaxValueIncrementer

DerbyTableMetaDataProvider

DisposableSqlTypeValue

DriverManagerDataSource

EmbeddedDatabase

EmbeddedDatabaseBuilder

EmbeddedDatabaseConfigurer

EmbeddedDatabaseFactory

EmbeddedDatabaseFactoryBean

EmbeddedDatabaseType

EmptySqlParameterSource

GeneratedKeyHolder

GenericCallMetaDataProvider

GenericSqlQuery

GenericStoredProcedure

GenericTableMetaDataProvider

H2SequenceMaxValueIncrementer

HanaCallMetaDataProvider

HanaSequenceMaxValueIncrementer

HsqlMaxValueIncrementer

HsqlSequenceMaxValueIncrementer

HsqlTableMetaDataProvider

IncorrectResultSetColumnCountException

InterruptibleBatchPreparedStatementSetter

InvalidResultSetAccessException

IsolationLevelDataSourceAdapter

IsolationLevelDataSourceRouter

Jdbc4SqlXmlHandler

JdbcAccessor

JdbcBeanDefinitionReader

JdbcDaoSupport

JdbcNamespaceHandler

JdbcOperations

JdbcTemplate

JdbcTransactionManager

JdbcTransactionObjectSupport

JdbcUpdateAffectedIncorrectNumberOfRowsException

JdbcUtils

JndiDataSourceLookup

KeyHolder

LazyConnectionDataSourceProxy

LobCreator

LobHandler

LobRetrievalFailureException

MapDataSourceLookup

MappingSqlQuery

MappingSqlQueryWithParameters

MapSqlParameterSource

MetaDataAccessException

MySQLMaxValueIncrementer

NamedParameterBatchUpdateUtils

NamedParameterJdbcDaoSupport

NamedParameterJdbcOperations

NamedParameterJdbcTemplate

NamedParameterUtils

OracleCallMetaDataProvider

OracleSequenceMaxValueIncrementer

OracleTableMetaDataProvider

OutputStreamFactory

ParameterDisposer

ParameterizedPreparedStatementSetter

ParameterMapper

ParsedSql

PostgresCallMetaDataProvider

PostgreSQLSequenceMaxValueIncrementer

PostgresSequenceMaxValueIncrementer

PostgresTableMetaDataProvider

PreparedStatementCallback

PreparedStatementCreator

PreparedStatementCreatorFactory

PreparedStatementSetter

RdbmsOperation

ResourceDatabasePopulator

ResultSetExtractor

ResultSetSupportingSqlParameter

ResultSetWrappingSqlRowSet

ResultSetWrappingSqlRowSetMetaData

RowCallbackHandler

RowCountCallbackHandler

RowMapper

RowMapperResultSetExtractor

ScriptException

ScriptParseException

ScriptStatementFailedException

ScriptUtils

SimpleConnectionHandle

SimpleDriverDataSource

SimpleJdbcCall

SimpleJdbcCallOperations

SimpleJdbcInsert

SimpleJdbcInsertOperations

SingleColumnRowMapper

SingleConnectionDataSource

SingleDataSourceLookup

SmartDataSource

SortedResourcesFactoryBean

SqlCall

SQLErrorCodes

SQLErrorCodesFactory

SQLErrorCodeSQLExceptionTranslator

SQLExceptionSubclassTranslator

SQLExceptionTranslator

SqlFunction

SqlInOutParameter

SqlLobValue

SqlOperation

SqlOutParameter

SqlParameter

SqlParameterSource

SqlParameterSourceUtils

SqlParameterValue

SqlProvider

SqlQuery

SqlReturnResultSet

SqlReturnType

SqlReturnUpdateCount

SqlRowSet

SqlRowSetMetaData

SqlRowSetResultSetExtractor

SqlServerCallMetaDataProvider

SqlServerMaxValueIncrementer

SQLStateSQLExceptionTranslator

SqlTypeValue

SqlUpdate

SqlValue

SQLWarningException

SqlXmlFeatureNotImplementedException

SqlXmlHandler

SqlXmlValue

StatementCallback

StatementCreatorUtils

StoredProcedure

SybaseAnywhereMaxValueIncrementer

SybaseCallMetaDataProvider

SybaseMaxValueIncrementer

TableMetaDataContext

TableMetaDataProvider

TableMetaDataProviderFactory

TableParameterMetaData

TemporaryLobCreator

TransactionAwareDataSourceProxy

UncategorizedScriptException

UncategorizedSQLException

UpdatableSqlQuery

UserCredentialsDataSourceAdapter

WebSphereDataSourceAdapter

XmlBinaryStreamProvider

XmlCharacterStreamProvider

XmlResultProvider

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

寒水馨

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值