test1 = testDao.getById(1);
test2 = testDao.getById(1);
test1.setName("new Name");
test2.setName("other name");
testDao.save(test1);
testDao.save(test2);
}
public void customer() {
CustomerDao customerDao = (CustomerDao)context.getBean("customerDao");
List customers = customerDao.getAll();