MVN

com.alexkasko.springjdbc : parallel-queries

Maven & Gradle

Mar 26, 2013
8 stars

SQL Queries Parallel Processing Using JdbcTemplate · Processes given SQL query in parallel in multiple data sources (assuming that all data source contain the same data). Combined results from multiple queries are exposed to application as java.util.Iterator. Worker thread use spring's JdbcTemplate with named parameters support.

<dependency>
    <groupId>com.alexkasko.springjdbc</groupId>
    <artifactId>parallel-queries</artifactId>
    <version>1.2.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.alexkasko.springjdbc : parallel-queries to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.2.3

All Versions

Choose a version of com.alexkasko.springjdbc : parallel-queries to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.2.x
parallel-queries-1.2.3
parallel-queries-1.2.2
parallel-queries-1.2.1
1.2
parallel-queries-1.2
1.1
parallel-queries-1.1
1.0
parallel-queries-1.0

How to add a dependency to Maven

Add the following com.alexkasko.springjdbc : parallel-queries maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.alexkasko.springjdbc</groupId>
    <artifactId>parallel-queries</artifactId>
    <version>1.2.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.alexkasko.springjdbc : parallel-queries gradle dependency to your build.gradle file:

implementation 'com.alexkasko.springjdbc:parallel-queries:1.2.3'

Gradle Kotlin DSL: Add the following com.alexkasko.springjdbc : parallel-queries gradle kotlin dependency to your build.gradle.kts file:

implementation("com.alexkasko.springjdbc:parallel-queries:1.2.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.alexkasko.springjdbc : parallel-queries sbt scala dependency to your build.sbt file:

libraryDependencies += "com.alexkasko.springjdbc" % "parallel-queries" % "1.2.3"