一、创建AccountDao接口
先创建接口,实现增加、更新、删除、查询以及事务管理中模拟交易的方法:
1 2 3 4 5 6 7 8 9 10 11 12 13
| package springjdbc;
import java.util.List;
public interface AccountDao { public int addAccount(Account account); public int updateAccount(Account account); public int deleteAccount(int id); public Account findAccountById(int id); public List<Account> findAllAcount(); public void transfer(String outUser,String inUser,Double money); }
|