answersLogoWhite

0

What is ibatis frame work?

User Avatar

Anonymous

17y ago
Updated: 8/16/2019

iBATIS is a Data Persistence Framework.

iBATIS in other words is an additional layer of indirection between the classes and the tables allowing it in more flexibility in how classes and tables are mapped with out making any changes to the Data model and the Object model. The layer of indirection here is the SQL.

This enables mapping SQL queries to POJOs-Plain Old Java Objects.

This works like the same as JPA[Hibernate/Spring framework] but faster than that.

The main advantages are-

1. Reduces the amount of Java code to access a DataBase with the use of XML files containing SQL queries.

2.Faster than JPA.

3.Uses existing SQL Stored Procedures.

User Avatar

Wiki User

17y ago

What else can I help you with?