KO
|
EN
gitlite — search
Search
#rust
#ai
#claude
#typescript
#python
#llm
#ai-agents
#mcp
#javascript
#nodejs
#nextjs
#react
mybatis-3
★ 20,434
Open GitHub ↗
MyBatis SQL mapper framework for Java
Download README (.md)
Explore Similar Repositories
bluebird
:
:bird: :zap: Bluebird is a full featured promise library with unmatched performance.
machine-learning-for-trading
:
Code for Machine Learning for Trading, 3rd edition — from data sourcing to live execution.
CleanArchitecture
:
Clean Architecture Solution Template for ASP.NET Core
Fuse
:
Lightweight fuzzy-search, in JavaScript
wagtail
:
A Django content management system focused on flexibility and user experience
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
mybatis-3
?
Download (.md)
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://central.sonatype.com/artifact/org.mybatis/mybatis) [](https://www.apache.org/licenses/LICENSE-2.0.html) [](https://mybatis.org/mybatis-3/) [](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. Contributions ------------- See [here](CONTRIBUTING.md) Tests ----- Mybatis-3 code runs more expressive testing depending on jdk usage and platform. By default, we set ```<excludedGroups>TestcontainersTests,RequireIllegalAccess</excludedGroups>``` 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 21 = 1899 tests - any OS + jdk 25 = 1899 tests our adjustments for GH actions where platform does matter - windows + jdk 21 = 1899 tests - windows + jdk 25 = 1899 tests - linux + jdk 21 = 1934 tests - linux + jdk 25 = 1934 tests - mac + jdk 21 = 1899 tests - mac + jdk 25 = 1899 tests