Mybatis入门(一)——第一个Mybatis程序

Mybatis
第一个Mybatis程序
思路:搭建环境–>导入Mybatis–>编写代码–>测试!
1、搭建环境
搭建数据库
create datebase `mybatis`;

use `mybatis`;

create table `user`(
`id` int(20) not null,
`name` varchar(30) default null,
`pwd` varchar(30) default null
)engine=innodb default charset = utf8;

insert into `user`(`id`,`name`,`pwd`) values
(1,"于世梁","123456"),
(2,"张三","128893456"),
(3,"李四","1234676"),

新建项目
新建一个普通的Maven项目 删除src目录

Mybatis入门(一)——第一个Mybatis程序最先出现在Python成神之路

版权声明:
作者:ht
链接:https://www.techfm.club/p/17728.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>