https://github.com/mybatis/mybatis-3
MyBatis SQL mapper framework for Java
https://github.com/mybatis/mybatis-3
java mybatis sql
Last synced: 2 days ago
JSON representation
MyBatis SQL mapper framework for Java
- Host: GitHub
- URL: https://github.com/mybatis/mybatis-3
- Owner: mybatis
- License: apache-2.0
- Created: 2013-02-14T19:03:32.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2025-03-31T10:59:54.000Z (17 days ago)
- Last Synced: 2025-04-01T00:12:35.191Z (16 days ago)
- Topics: java, mybatis, sql
- Language: Java
- Homepage: http://mybatis.github.io/mybatis-3/
- Size: 151 MB
- Stars: 20,017
- Watchers: 1,140
- Forks: 12,922
- Open Issues: 194
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred-test - mybatis/mybatis-3 - MyBatis SQL mapper framework for Java (Java)
- my-awesome - mybatis/mybatis-3 - 04 star:20.0k fork:12.9k MyBatis SQL mapper framework for Java (Java)
- StarryDivineSky - mybatis/mybatis-3
- awesome-java - Mybatis
README
MyBatis SQL Mapper Framework for Java
=====================================[](https://github.com/mybatis/mybatis-3/actions?query=workflow%3A%22Java+CI%22)
[](https://coveralls.io/github/mybatis/mybatis-3?branch=master)
[](https://sonarcloud.io/summary/new_code?id=mybatis_mybatis-3)
[](https://maven-badges.herokuapp.com/maven-central/org.mybatis/mybatis)
[](https://oss.sonatype.org/content/repositories/snapshots/org/mybatis/mybatis/)
[](https://www.apache.org/licenses/LICENSE-2.0.html)
[](https://stackoverflow.com/questions/tagged/mybatis)
[](https://www.openhub.net/p/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 an XML descriptor or annotations.
Simplicity is the biggest advantage of the MyBatis data mapper over object relational mapping tools.Essentials
----------* [See the docs](https://mybatis.org/mybatis-3)
* [Download Latest](https://github.com/mybatis/mybatis-3/releases)
* [Download Snapshot](https://oss.sonatype.org/content/repositories/snapshots/org/mybatis/mybatis/)Contributions
-------------See [here](CONTRIBUTING.md)
Tests
-----Mybatis-3 code runs more expressive testing depending on jdk usage and platform.
By default, we set ```TestcontainersTests,RequireIllegalAccess``` which will exclude a subset of tests with @Tag('TestcontainersTests') and @Tag('RequireIllegalAccess').
When we run on ci platform, we further make adjustments as needed. See [here](.github/workflows/ci.yaml) for details.
As of 12/28/2024, using combined system + jdk will result in given number of tests ran. This will change as tests are added or removed over time.
without adjusting settings (ie use as is, platform does not matter)
- any OS + jdk 17 = 1899 tests
- any OS + jdk 21 = 1899 tests
- any OS + jdk 23 = 1899 tests
- any OS + jdk 24 = 1899 tests
- any OS + jdk 25 = 1899 testsour adjustments for GH actions where platform does matter
- windows + jdk 17 = 1899 tests
- windows + jdk 21 = 1899 tests
- windows + jdk 23 = 1899 tests
- windows + jdk 24 = 1899 tests
- windows + jdk 25 = 1899 tests- linux + jdk 17 = 1934 tests
- linux + jdk 21 = 1934 tests
- linux + jdk 23 = 1934 tests
- linux + jdk 24 = 1934 tests
- linux + jdk 25 = 1934 tests- mac + jdk 17 = 1899 tests
- mac + jdk 21 = 1899 tests
- mac + jdk 23 = 1899 tests
- mac + jdk 24 = 1899 tests
- mac + jdk 25 = 1899 tests