MVN

com.clevergang.libs : fluent-spring-jdbctemplate

Maven & Gradle

Feb 01, 2017
7 stars

Fluent syntax for Spring JDBCTemplate · This small library provides a facade to the commonly used NamedParameterJdbcTemplate of the Springs spring-jdbc library, offering fluent "Java8 like" style of writing SQL statements and commands. We do not aim to replace the NamedParameterJdbcTemplate, we just want to extend its functionality and try to offer a simpler way how to use it.

<dependency>
    <groupId>com.clevergang.libs</groupId>
    <artifactId>fluent-spring-jdbctemplate</artifactId>
    <version>1.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.clevergang.libs : fluent-spring-jdbctemplate to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0

All Versions

Choose a version of com.clevergang.libs : fluent-spring-jdbctemplate to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
fluent-spring-jdbctemplate-1.0.0

How to add a dependency to Maven

Add the following com.clevergang.libs : fluent-spring-jdbctemplate maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.clevergang.libs</groupId>
    <artifactId>fluent-spring-jdbctemplate</artifactId>
    <version>1.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.clevergang.libs : fluent-spring-jdbctemplate gradle dependency to your build.gradle file:

implementation 'com.clevergang.libs:fluent-spring-jdbctemplate:1.0.0'

Gradle Kotlin DSL: Add the following com.clevergang.libs : fluent-spring-jdbctemplate gradle kotlin dependency to your build.gradle.kts file:

implementation("com.clevergang.libs:fluent-spring-jdbctemplate:1.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.clevergang.libs : fluent-spring-jdbctemplate sbt scala dependency to your build.sbt file:

libraryDependencies += "com.clevergang.libs" % "fluent-spring-jdbctemplate" % "1.0.0"

Advertisement