Is there a comprehensive example or tutorial for iBATIS 3 with annotations?

I am specifically interested in moving away from an XML-based mapper configuration to using pure Java annotations where the SQL statements often take or return complex data structures.

Also, it wasn't clear in the samples I saw, how the configuration file was adapted when moving away from XML-based mappers to annotation-based mapper interfaces.

link|improve this question
Just a side note that doesn't really answer your question. Changing from XML to notations will likely require you to rewrite a lot of the stuff you've already done; or at least write new code going forward. Since this is the case; you might want to consider using Guice on top of iBatis. I haven't used it yet so I can't speak too much to its accolades; but using dependency injection seems to be trend in persistence frameworks. Also, could you maybe post your current configuration xml (passwords/sensitive info stripped out of course)? I might take a stab at it later. – Dave Jan 26 '11 at 20:41
Thanks Dave!! That's a good idea. I was just reading Dhanji's "Dependency Injection" and thinking it would be worth checking out Guice. I am going to be refactoring code this year, so it's a good time to explore and understand DI value to persistence frameworks. – Nitya N Jan 29 '11 at 20:23
feedback

1 Answer

Read "What's new in iBATIS 3" written by Nathan Good. It explains one example using Java 5 annotations instead of XML configuration files.

link|improve this answer
Thanks Nathan! Now that they've moved to "myBatis" I've been having a little more success with documentation. Will check out the link and see how well it translates. – Nitya N Jan 29 '11 at 20:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.