Spring Integration JDBC Support.
Here is the list of declaration for spring-integration-jdbc. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-jdbc</artifactId> <version>4.0.0.RELEASE</version> </dependency>
If you think this Maven repository POM file listing for spring-integration-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-integration-jdbc-4.0.0.RELEASE has 5 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 |
---|---|---|
Java Library | guava 16.0.1 Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. Guava has only one code dependency - javax.annotation, per the JSR-305 spec. | 146 |
Spring | spring-tx 4.0.3.RELEASE Spring Transaction | 12 |
Spring | spring-jdbc 4.0.3.RELEASE Spring JDBC | 8 |
Spring | spring-aop 4.0.3.RELEASE Spring AOP | 32 |
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.integration</groupId> <artifactId>spring-integration-jdbc</artifactId> <version>4.0.0.RELEASE</version> <name>Spring Integration JDBC Support</name> <description>Spring Integration JDBC Support</description> <url>https://projects.spring.io/spring-integration</url> <organization> <name>SpringIO</name> <url>https://spring.io</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/INT</url> </issueManagement> <scm> <connection>scm:git:scm:git:git://github.com/spring-projects/spring-integration.git</connection> <developerConnection>scm:git:scm:git:ssh://git@github.com:spring-projects/spring-integration.git</developerConnection> <url>https://github.com/spring-projects/spring-integration</url> </scm> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>16.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>4.0.3.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-core</artifactId> <version>4.0.0.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>4.0.3.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>4.0.3.RELEASE</version> <scope>compile</scope> </dependency> </dependencies> </project>