摘要:
MyBatis下载地址:http://code.google.com/p/mybatis/搭建第一个mybatis应用创建系统所需数据库----数据库 tb_user--drop table if exists tb_user;create table tb_user( id int primary key auto_increment comment '主键', username varchar(40) not null unique comment '用户名', password varchar(40) not null comment '密码 阅读全文