GeekArticles
Java
J2SEiBatis DAO
Author: onjava.com |
Published: 26th Aug 2005 |
Visited: 1045 times |
Add CommentFiled in: J2SE
The J2EE Data Access Object pattern calls for encapsulating access to a data source behind an API, giving you the freedom to change implementations or use different persistence strategies for different operations. As Sunil Patil shows, the Apache iBatis DAO framework helps you develop such a strategy.
Read Article Sponsored Links
Related Articles
• Spring: Integrating iBATIS
iBATIS is one of the object-relational (OR) frameworks embraced by the Spring framework, and it's an ideal choice for those seeking a middle ground between full-blown OR and hand-written JDBC. In this excerpt from Spring: A Developer's Notebook, Bruce Tate and Justin Gehtland show how ...
• Using iBatis SQL Maps for Java Data Access By Michael Klaene Go to page: 1 2 3 Next Finding the best approach when accessing a database from Java can be a daunting task. The most common solution is to program directly to the JDBC (Java Database Connectivity) APIs. The result is hard-to-read source files, bloated with complex code that has no ...