MyBatis is an open-source Java persistence framework that abstracts JDBC boilerplate code and provides a simple and easy-to-use API to interact with the database.
Unlike Hibernate , a full-blown ORM framework, MyBatis is a SQL mapping framework. It automates the process of populating the SQL resultset into Java objects, and it persists data into tables by extracting the data from the Java objects.
This chapter covers how to use ...