My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Links

Introduction

MyBatis ORM is a Simple ORM framework to insert, update, delete, and select an JAVA object. It's using MyBatis to generate SQLs in runtime.

MyBatis ORM은 MyBatis를 이용하여 자바 객체를 insert, update, delete 그리고, select 하기 위한 간단한 ORM 프레임웍으로, DB 테이블과 자바 객체를 1:1 매핑한다.

Project Goal

  • Minimizing writing SQL statements
  • Simple configuration
  • Low learning curve

MyBatis ORM does

  • object 와 relation 의 1:1 매핑
    • MyBatis 를 이용하여 기본적인 insert, update, delete, select 문을 runtime 자동 생성
    • 생성된 SQL문을 MyBatis SQL repository 에 저장
  • 설정은 Java Annotation 사용
  • MySql의 auto increment, Oracle의 sequence 자동 처리

MyBatis ORM doesn't

  • 객체간의 Association 은 다루지 않음
  • Join, subquery 다루지 않음(MyBatis로 처리)

Support

  • MySql
  • Oracle

Release Note

Powered by Google Project Hosting