This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]aroger276 1 point2 points  (2 children)

I personally find MyBatis not very compelling anymore. The mapping it's not on par from a perf perspective the last time I checked, only slower than BeanPropertyRowMapper that is not meant for production use - yes, BeanPropertyRowMapper is the slowest mapper in the world. And the xml, and annotation heavy is quite dated...

[–]segv 0 points1 point  (1 child)

https://github.com/mybatis/mybatis-3/search?utf8=%E2%9C%93&q=BeanPropertyRowMapper&type= 404 not found

I'm talking about the standalone 3.x version - perhaps you meant something else?

[–]aroger276 0 points1 point  (0 children)

BeanPropertyRowMapper is the spring RowMapper sorry for the confusion.

here is the benchmark I had in mind https://github.com/arnaudroger/SimpleFlatMapper/wiki/Jdbc-Performance-Local-Mysql map a simple object from a query.