Mybatis
Concepts
resultType vs resultMap
Must choose either one of them
resultType directly tries to copy values to specified POJO
resultMap provides opportunity to map values to inconsistent attribute names of POJO
Related libs
Pro: No need to write mapper interface / xml
Con: would be much more lines comparing with regular query
Last updated