spring-jdbc maven dependency

This page gives you a quick reference to get spring-jdbc dependency for Maven or Gradle projects. You can also download the spring-jdbc jar dependency, the link given at the "Download JAR File" section.

This spring-jdbc module includes all classes for JDBC support. You will need this module for all applications that require database access. Classes for supporting data sources, JDBC data types, JDBC templates, native JDBC connections, and so on, are packed in this module.

Spring JDBC Maven Dependency

Copy below Spring JDBC maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>5.2.1.RELEASE</version>
</dependency>

Spring JDBC Gradle Dependency

Copy below Spring JDBC gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/org.springframework/spring-jdbc
compile group: 'org.springframework', name: 'spring-jdbc', version: '5.2.1.RELEASE'

Download JAR File

Check for Latest Release

Reference



Comments