Mybatis是一款优秀的持久层框架,用于简化JDBC开发。
Mybatis官网:https://mybatis.org/mybatis-3/
Mybatis中文官网:https://mybatis.org/mybatis-3/zh/index.html
Mybatis前身是Apache的一个开源项目iBatis,2010年该项目由Apache迁移到google code,并且改名为Mybatis。2013年11月迁移到GitHub。
使用JDBC的缺点:
配置文件
完成teacher_db
teacher
表,添加数据create table teacher
(
id int comment '教师编号',
name varchar(20) not null comment '教师姓名',
sex varchar(4) not null comment '教师性别',
age int not null comment '教师年龄',
position varchar(20) not null comment '教师职务',
primary key (id)
);
insert into teacher values (1001,'张三','男',29,'讲师');
insert into teacher values (1002,'李四','女',25,'班主任');
insert into teacher values (1003,'王五','女',33,'班主任');
insert into teacher values (1004,'李红','女',34,'讲师');
insert into teacher values (1005,'张斯','男',28,'讲师');
insert into teacher values (1006,'张慧','女',29,'班主任');
insert into teacher values (1007,'刘欣','女',25,'讲师');
<< · Back Index ·>>
1 丁零零零零…电话铃声急促,李明杰拿起了话筒。洮昌公安派出所值班民警报告:“刚才,管区内一对夫妇来派出所报案,他们的1 ...
胡安·卡洛斯国王大学Logo 胡安·卡洛斯国王大学 (Universidad Rey Juan Carlos) ,简称胡卡( URJC),是一所以西班牙老国王 ...