Tutorial for Spring DAO with JDBC
This tutorial demonstrates how to work with data access objects in the spring framework. It implements the Spring Data Access Object with JDBC. Data Access Objects exist to provide a means to read, write or modify data in the database..
In this tutorial basic ways of bean definition and good features of spring like Dependency Injection (setter injector in this case) and ways of declaring beans in the Spring configuration file are demonstrated. In addition a Junit test is used to test the code.
Spring depends on Log4j. Make sure that the Log4j JAR file is in the applications classpath. If it is not already provided with the spring libraries you can find it at http://logging.apache.org/log4j/docs/index.html . Download the file log4j and copy it to the libfolder under your project.
Source: people.cis.ksu.edu
Related PDF Files
Topic:
Comments for Tutorial for Spring DAO with JDBC