What is MyBatis?
MyBatis is a persistence framework that supports developer-specified SQL, stored procedures, and some advanced mapping.
...
When the user writes each SQL statement for CRUD in the SqlMap XML file and writes these files in the SqlMapConfig XML file, it creates statement mapped objects automatically through MyBatis API and executes SQL statement in DB through it. MyBatis is currently acquired by Google and the website is http://blog.mybatis.org/http://mybatis.github.io/mybatis-3/.
Downloading MyBatis
To use MyBatis, MyBatis related jar files are required. This jar file can be downloaded from http://repo1.maven.org/maven2/org/mybatis/mybatis/3.2.8/.
...