spring package-info 源码

  • 2022-08-08
  • 浏览 (296)

spring package-info 代码

文件路径:/spring-jdbc/src/main/java/org/springframework/jdbc/package-info.java

/**
 * The classes in this package make JDBC easier to use and
 * reduce the likelihood of common errors. In particular, they:
 * <ul>
 * <li>Simplify error handling, avoiding the need for try/catch/finally
 * blocks in application code.
 * <li>Present exceptions to application code in a generic hierarchy of
 * unchecked exceptions, enabling applications to catch data access
 * exceptions without being dependent on JDBC, and to ignore fatal
 * exceptions there is no value in catching.
 * <li>Allow the implementation of error handling to be modified
 * to target different RDBMSes without introducing proprietary
 * dependencies into application code.
 * </ul>
 *
 * <p>This package and related packages are discussed in Chapter 9 of
 * <a href="https://www.amazon.com/exec/obidos/tg/detail/-/0764543857/">Expert One-On-One J2EE Design and Development</a>
 * by Rod Johnson (Wrox, 2002).
 */
@NonNullApi
@NonNullFields
package org.springframework.jdbc;

import org.springframework.lang.NonNullApi;
import org.springframework.lang.NonNullFields;

相关信息

spring 源码目录

相关文章

spring BadSqlGrammarException 源码

spring CannotGetJdbcConnectionException 源码

spring IncorrectResultSetColumnCountException 源码

spring InvalidResultSetAccessException 源码

spring JdbcUpdateAffectedIncorrectNumberOfRowsException 源码

spring LobRetrievalFailureException 源码

spring SQLWarningException 源码

spring UncategorizedSQLException 源码

0  赞