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>4.0.6.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-4.0.6.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 |
---|---|---|
Database | h2 1.3.176 H2 Database Engine | 9 |
JDBC | c3p0 0.9.2.1 a JDBC Connection pooling / Statement caching library | 15 |
JEE Container | javax.transaction-api 1.2 Project GlassFish Java Transaction API | 31 |
JDBC | derby 10.10.2.0 Contains the core Apache Derby database engine, which also includes the embedded JDBC driver. | 15 |
JDBC | derbyclient 10.10.2.0 The Derby client JDBC driver, used to connect to a Derby server over a network connection. | 8 |
Database | hsqldb 2.3.2 HSQLDB - Lightweight 100% Java SQL Database Engine | 34 |
Spring | spring-beans 4.0.6.RELEASE Spring Beans | 14 |
Spring | spring-context 4.0.6.RELEASE Spring Context | 52 |
Spring | spring-core 4.0.6.RELEASE Spring Core | 16 |
Spring | spring-tx 4.0.6.RELEASE Spring Transaction | 42 |
The following table lists the most popular artifacts which are depending on spring-jdbc-4.0.6.RELEASE. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Spring | spring-context-support 4.0.6.RELEASE Spring Context Support | 37 |
The following packages are defined in the spring-jdbc-4.0.6.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>4.0.6.RELEASE</version> <name>Spring JDBC</name> <description>Spring JDBC</description> <url>https://github.com/spring-projects/spring-framework</url> <organization> <name>Spring IO</name> <url>http://projects.spring.io/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> <issueManagement> <system>Jira</system> <url>https://jira.springsource.org/browse/SPR</url> </issueManagement> <scm> <connection>scm:git:git://github.com/spring-projects/spring-framework</connection> <developerConnection>scm:git:git://github.com/spring-projects/spring-framework</developerConnection> <url>https://github.com/spring-projects/spring-framework</url> </scm> <dependencies> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.3.176</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.mchange</groupId> <artifactId>c3p0</artifactId> <version>0.9.2.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.transaction</groupId> <artifactId>javax.transaction-api</artifactId> <version>1.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.10.2.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbyclient</artifactId> <version>10.10.2.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.3.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>4.0.6.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.0.6.RELEASE</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>4.0.6.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>4.0.6.RELEASE</version> <scope>compile</scope> </dependency> </dependencies> </project>