http://www.mybatis.org/spring/zh/index.html
http://www.mybatis.org/mybatis-3/zh/java-api.html
编程API:
SqlSession session = sqlSessionFactory.openSession();
try {
// following 3 lines pseudocod for "doing some work"
session.insert(...);
session.update(...);
session.delete(...);
session.commit();
} finally {
session.close();
}