Actually I am new in My batis and wanted to help me out in bellow scenario
I wanted to return Object Which has two list as a member, from Result of select Query in Mybatis. for example my object Class
public class ABC{
List Boys;
List Girls;
}
And I wanted to generate single instance of ABC from bellow Query
Select Boy_roll_no , Boy_name, Girl_roll_no , Girl_name from Classdata
Can anybody help me out how to do xml configuration(How to define resultmap for query ) for Mybatis