I am currently working on a project that uses MyBatis annotations in mapper interfaces as I prefer this to XML files but have been running into issues mapping assocations.
i.e. loading a collection for a one to many assocaition that uses a join table.
I know that annotations do not support some association mappings. Is it still possible to use MyBatis with mapper interfaces in Java in any moderately complex application without resorting to xml mapping files, considering the limitations?
Is there any issues combining mapper interfaces with xml mapping files.