- 浏览: 1444 次
- 性别:
- 来自: 北京
最新评论
-
atgoingguoat:
发个工程看下。亲。
学习整理====》Spring3.2+MyBatis3
文章列表
Spring3.2整合MyBatis,我的Spring版本是3.2,MyBatis版本是3.0.4。
1.建工程,建包。
2.建立测试表:使用MySQL数据库
##数据库的脚本
drop table if exists stu;
create table stu(
sid int primary key auto_increment,
sname varchar(32),
sage int,
sbirth datetime
...