MyBatis使用介绍 MyBatis的详细使用介绍 http://www.cnblogs.com/xrq730/category/796495.html 建立PO public class Person { private String id; private String name; //set get 方法... } 建立Mapper mapper是数据库操作的映射文件,也就是我们常说的dao文件. public interface PersonDao { public List<Per…