Commit 664e64a1 authored by Zhang's avatar Zhang

Upload New File

parent 793af694
1.项目resource下的application.yml为配置文件,请修改datasource下的url、username、password
1.项目resource下的application.yml为配置文件,请修改datasource下的url、username、password
创建对应数据表 usertest :
/*Table structure for table `usertest` */
DROP TABLE IF EXISTS `usertest`;
CREATE TABLE `usertest` (
`name` varchar(50) COLLATE utf8_bin DEFAULT NULL COMMENT '姓名',
`sex` varchar(50) COLLATE utf8_bin DEFAULT NULL COMMENT '性别',
`hobby` varchar(1000) COLLATE utf8_bin DEFAULT NULL COMMENT '爱好',
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='用户信息表';
2.打开项目执行测试用例
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment