The PersonDao interface is part of the sample code that is included in a particular release download:
http://s3.amazonaws.com/dist.springf...pendencies.zip
Checkout samples/article.
You can also look at the SVN sources:
http://src.springframework.org/svn/s...-1.3.1.RELEASE
Again in samples/article.
It's not a complicated interface:
Code:
public interface PersonDao {
void create(Person person);
void update(Person person);
void delete(Person person);
List getAllPersonNames();
List findAll();
Person findByPrimaryKey(String country,
String company, String fullname);
}