m

mybatis

The MyBatis SQL mapper framework makes it easier to use a relational database with object-oriented applications. MyBatis couples objects with stored procedures or SQL statements using a XML descriptor or annotations. Simplicity is the biggest advantage of the MyBatis data mapper over object relational mapping tools.
https://www.mybatis.org/mybatis-3
文件下载
文件名 操作
mybatis-3.5.11.2.jar 下载
mybatis-3.5.11.2.pom 下载
mybatis-3.5.11.2-sources.jar 下载
Apache Maven
<dependency>
  <groupId>io.github.flyinwind1</groupId>
  <artifactId>mybatis</artifactId>
  <version>3.5.11.2</version>
</dependency>
Gradle Groovy
implementation 'io.github.flyinwind1:mybatis:3.5.11.2'
Gradle Kotlin
implementation("io.github.flyinwind1:mybatis:3.5.11.2")
Scala SBT
libraryDependencies += "io.github.flyinwind1" % "mybatis" % "3.5.11.2"
Groovy Grape
@Grapes(
  @Grab(group='io.github.flyinwind1', module='mybatis', version='3.5.11.2')
)
Apache Ivy
<dependency org="io.github.flyinwind1" name="mybatis" rev="3.5.11.2" />
Leiningen
[io.github.flyinwind1/mybatis "3.5.11.2"]
Apache Buildr
'io.github.flyinwind1:mybatis:jar:3.5.11.2'