Chapter 5: DAO Support and JDBC Framework


Overview

This chapter introduces Spring's support for the Data Access Object (DAO) pattern. This is followed by an in-depth discussion of Spring's JDBC framework.

The DAO pattern is one of the most important patterns commonly used in J2EE applications, and Spring's data access architecture provides uniquely sophisticated yet straightforward support for it.

The Spring JDBC framework is built on top of the core J2SE JDBC API, and it is the lowest level data access technology that Spring supports. Other, higher level technologies are iBATIS SQL Maps, Hibernate, JDO, and other O/R mapping tools. These technologies also use JDBC as their underlying API for accessing a relational database but they all provide their own higher level abstraction API that you work with. In Chapter 7 we will discuss these other technologies in detail.

To begin with, we'll spend some time looking at JDBC itself. We will briefly look at what works well and what does not work so well with a traditional JDBC approach. We assume that you have some experience using JDBC. If you don't, you should start with a basic JDBC tutorial before continuing with this chapter. Sun provides a JDBC tutorial on their Java website at http://java.sun.com/docs/books/tutorial/jdbc/index.html.

We will then introduce the core functionality of Spring's JDBC framework. The focus of Spring's approach is to make it easier to use the strengths present in the JDBC API while abstracting away the rough spots. We will then cover the JDBC framework in more detail and conclude with a discussion of when it is appropriate to use Spring JDBC rather than an Object/Relational mapping tool.



Professional Java Development with the Spring Framework
Professional Java Development with the Spring Framework
ISBN: 0764574833
EAN: 2147483647
Year: 2003
Pages: 188

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net