I have seen some developers are using multi-row insert in MyBatis to perform bulk insert.
If performance is your concern, though, you should consider using batch insert instead especially when the number of rows to insert is large.
In this post, I will show you the advantage of batch insert over multi-row insert.
The project that I used for profiling is available on GitHub.