mybatis的SessionFactory会事先把mapper中的sql导入PreparedStatement,并一直保存。而Jdbc使用时,甚至是JdbcTemplate使用时,都未将PreparedStatement进行缓存,所以在这块性能上Mybatis要好了一些。
本文共 225 字,大约阅读时间需要 1 分钟。
mybatis的SessionFactory会事先把mapper中的sql导入PreparedStatement,并一直保存。而Jdbc使用时,甚至是JdbcTemplate使用时,都未将PreparedStatement进行缓存,所以在这块性能上Mybatis要好了一些。
转载于:https://my.oschina.net/u/937710/blog/123968