Book Image

SPRING COOKBOOK

Book Image

SPRING COOKBOOK

Overview of this book

Table of Contents (19 chapters)
Spring Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Creating a DAO class


In this recipe, we will create a DAO (data access object) class. A DAO class provides methods to save and retrieve objects from the database. It can be used from a controller, for example:

The controller calls the findUsers() method from UserDAO, which takes care of getting the results from the database (using the JdbcTemplate bean defined in the previous recipe).

How to do it…

Here are the steps to create a DAO class:

  1. Create a class annotated with @Repository:

    @Repository
    public class UserDAO {
  2. Add an autowired JdbcTemplate field to it:

    @Autowired
    private JdbcTemplate jdbcTemplate;

How it works…

@Repository allows the UserDAO class to be automatically discovered and instantiated as a bean.

The JdbcTemplate field will be initialized automatically by Spring via dependency injection with the JdbcTemplate bean defined in the previous recipe.