Hi I\'m new to myBatis.
I\'m using MyBatis and Spring with mybatis-spring.
How can I pass two different types of objects as parameters, and how can I use their p
I would suggest reading the MyBatis documentation - it is pretty comprehensive and accurate.
Lets take an example: updating a customer's name from a com.mycompany.Customer POJO instance, which has a getFirstName() getter.
(Edit) If you need to pass multiple objects there are various options:
Again, please read the manual...