Spring JDBC.
Here is the list of declaration for spring-jdbc. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>3.2.4.RELEASE</version> </dependency>
If you think this Maven repository POM file listing for spring-jdbc is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The spring-jdbc-3.2.4.RELEASE has 10 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JDBC | c3p0 0.9.1.2 c3p0 is an easy-to-use library for augmenting traditional (DriverManager-based) JDBC drivers with JNDI-bindable DataSources, including DataSources that implement Connection and Statement Pooling, as described by the jdbc3 spec and jdbc2 std extension. | 82 |
Database | h2 1.0.71 H2 Database Engine | 27 |
Database | hsqldb 1.8.0.10 Lightweight 100% Java SQL Database Engine | 164 |
JDBC | derby 10.5.3.0_1 Contains the core Apache Derby database engine, which also includes the embedded JDBC driver. | 75 |
JDBC | derbyclient 10.5.3.0_1 The Derby client JDBC driver, used to connect to a Derby server over a network connection. | 17 |
Spring | spring-beans 3.2.4.RELEASE Spring Beans | 21 |
Spring | spring-context 3.2.4.RELEASE Spring Context | 25 |
Spring | spring-core 3.2.4.RELEASE Spring Core | 22 |
Spring | spring-tx 3.2.4.RELEASE Spring Transaction | 11 |
The following table lists the most popular artifacts which are depending on spring-jdbc-3.2.4.RELEASE. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JPA Hibernate | liquibase-hibernate4 3.3 Liquibase extension for hibernate integration including generating changesets based on changed hibernate mapping files | 13 |
Spring | spring-context-support 3.2.4.RELEASE Spring Context Support | 10 |
Spring | spring-orm 3.2.4.RELEASE Spring Object/Relational Mapping | 8 |
The following packages are defined in the spring-jdbc-3.2.4.RELEASE.jar
org.springframework.jdbc org.springframework.jdbc.config org.springframework.jdbc.core org.springframework.jdbc.core.metadata org.springframework.jdbc.core.namedparam org.springframework.jdbc.core.simple org.springframework.jdbc.core.support org.springframework.jdbc.datasource org.springframework.jdbc.datasource.embedded org.springframework.jdbc.datasource.init org.springframework.jdbc.datasource.lookup org.springframework.jdbc.object org.springframework.jdbc.support org.springframework.jdbc.support.incrementer org.springframework.jdbc.support.lob org.springframework.jdbc.support.nativejdbc org.springframework.jdbc.support.rowset org.springframework.jdbc.support.xml
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>3.2.4.RELEASE</version> <name>Spring JDBC</name> <description>Spring JDBC</description> <url>https://github.com/SpringSource/spring-framework</url> <organization> <name>SpringSource</name> <url>http://springsource.org/spring-framework</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/SpringSource/spring-framework</connection> <developerConnection>scm:git:git://github.com/SpringSource/spring-framework</developerConnection> <url>https://github.com/SpringSource/spring-framework</url> </scm> <dependencies> <dependency> <groupId>c3p0</groupId> <artifactId>c3p0</artifactId> <version>0.9.1.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.0.71</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>1.8.0.10</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.5.3.0_1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbyclient</artifactId> <version>10.5.3.0_1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jta_1.1_spec</artifactId> <version>1.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>3.2.4.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>3.2.4.RELEASE</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>3.2.4.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>3.2.4.RELEASE</version> <scope>compile</scope> </dependency> </dependencies> </project>