Skip to content

hazendaz/mybatis-3

This branch is 162 commits behind mybatis/mybatis-3:master.

Folders and files

NameName
Last commit message
Last commit date
Dec 29, 2024
Aug 17, 2024
Jan 1, 2025
Aug 25, 2022
Feb 20, 2023
Feb 11, 2024
Sep 4, 2022
Dec 29, 2024
Sep 4, 2022
Sep 4, 2022
Aug 25, 2022
Nov 9, 2023
Dec 29, 2024
Feb 5, 2023
Jun 27, 2024
Jun 27, 2024
Jan 1, 2025
Feb 11, 2024

Repository files navigation

MyBatis SQL Mapper Framework for Java

build Coverage Status Maven central Sonatype Nexus (Snapshots) License Stack Overflow Project Stats

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

Contributions

Mybatis-core is now being auto formatted. Given nature of some code logic with mybatis, it is more appropriate to force a formatting structure manually for snippets such as sql statements. To do so, add following blocks around code.

  • // @formatter:off to start the block of unformatted code
  • // @formatter:on to end the block of unformatted code

If comment sections need same behaviour such as javadocs, note that the entire block must be around entire comment as direct usage does not properly indicate that formatter treats it all as one comment block regardless.

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 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 tests

our 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

About

MyBatis data mapper framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 99.4%
  • Other 0.6%