MyBatis小抄

持续更新中。

  • Every MyBatis application centers around an instance of SqlSessionFactory
  • A cleaner approch to excecuting SQL commands : using an interface that describes the parameters and return value for a given statement(cleaner, more type safe, without error prone string literals and casting)
  • Mapped SQL statements
  • One SqlSessionFactory instance per database
原文地址:https://www.cnblogs.com/huangzejun/p/8143931.html