首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

MyBatis3+spring3+struts2.3.15范例

2013-12-20 
MyBatis3+spring3+struts2.3.15实例MySql:drop database if exists mavencreate database mavendrop tab

MyBatis3+spring3+struts2.3.15实例
MySql:
drop database if exists maven;
create database maven;
drop table if exists USER;

/*==============================================================*/
/* Table: USER                                                  */
/*==============================================================*/
create table USER
(
   ID                   int not null auto_increment,
   USERNAME             varchar(30),
   account              varchar(16),
   pwd                  varchar(16),
   primary key (ID)
);

alter table USER comment 'USER';
insert into user(username,account,pwd) values('杨龙','yanglong','yanglong'),('周星佑','zhouxingyou','zhouxingyou'),('余昌兴','yuchangxing','yuchangxing');
源码:http://download.csdn.net/detail/gxl442172663/6723177

热点排行