MVN

cn.vonce : vonce-sqlbean

Maven & Gradle

Jun 15, 2020
14 stars

vonce-sqlbean · This is a tool that uses java object-oriented idea to write and generate SQL statements. On this basis, it also implements lightweight plug-in support similar to JPA for mybatis and spring JDBC. A large number of common SQL execution methods are built in plug-ins to improve development efficiency, reduce a large number of SQL statement writing, and make developers focus on business code writing.

<dependency>
    <groupId>cn.vonce</groupId>
    <artifactId>vonce-sqlbean</artifactId>
    <version>1.3.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of cn.vonce : vonce-sqlbean to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.3.0

All Versions

Choose a version of cn.vonce : vonce-sqlbean to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3.x
vonce-sqlbean-1.3.0
1.2.x
vonce-sqlbean-1.2.5
vonce-sqlbean-1.2.4
vonce-sqlbean-1.2.2
vonce-sqlbean-1.2.1
vonce-sqlbean-1.2.0
1.0.x
vonce-sqlbean-1.0.0
0.9.x
vonce-sqlbean-0.9.6
vonce-sqlbean-0.9.5

How to add a dependency to Maven

Add the following cn.vonce : vonce-sqlbean maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>cn.vonce</groupId>
    <artifactId>vonce-sqlbean</artifactId>
    <version>1.3.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following cn.vonce : vonce-sqlbean gradle dependency to your build.gradle file:

implementation 'cn.vonce:vonce-sqlbean:1.3.0'

Gradle Kotlin DSL: Add the following cn.vonce : vonce-sqlbean gradle kotlin dependency to your build.gradle.kts file:

implementation("cn.vonce:vonce-sqlbean:1.3.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following cn.vonce : vonce-sqlbean sbt scala dependency to your build.sbt file:

libraryDependencies += "cn.vonce" % "vonce-sqlbean" % "1.3.0"

Advertisement