The JDBC support in the Spring Framework is extensive and covers the most commonly used features, but there are some new usage scenarios like type-safe queries that warrants some extension to be provided. The core part of the Spring Data JDBC Extensions project provides this type of extension and it can be used together with any supported SQL database.
The following lists the various features that are covered. Each feature is documented in more detail in the following chapters
The core support provides extensions to the Spring Framework JDBC support.
The Querydsl project provides a way to work with many datastore in a type-safe manner. This includes support for working with SQL databases. We provide the "glue" that let's you easily work with Querydsl in a Spring based project.
The requirements for using the features provided in the
core
module of the "Spring Data JDBC Extensions"
project are listed below.
The minimum Java version is now 1.7.
All Spring Framework features that are needed are provided in Spring Framework version 4.1 or later.
Apache Commons Logging is used by the Spring Framework but it can be replaced by the jcl-over-slf4j bridge provided by the SLF4J project.
The Querydsl support requires the use of Querydsl SQL module version 3.x or later.