Nomenclature: The entire core development team has moved to Google Code, and are maintaining the project under a new name, MyBatis.
Answer:
I'm pretty sure there are no decent tutorials for annotations beyond the user guide on the project site.
In your main configuration file (e.g. mybatis-3-config.xml), simply do not include a "mappers" element.
Advice: I would actually recommend sticking with the XML, because many non-trivial mappings are actually impossible to accomplish with Java annotations. On page 57 of the user guide (http://mybatis.googlecode.com/svn/trunk/doc/en/MyBatis-3-User-Guide.pdf), it says:
Despite a lot of time spent in investigation, design and trials, the most powerful MyBatis mappings simply cannot be built with Annotations – without getting ridiculous that is. C# Attributes (for example) do not suffer from these limitations, and thus MyBatis.NET will enjoy a much richer alternative to XML.
What specifically would you like help figuring out how to do with annotations?