1.数据库的准备: 数据库: create DATABASE mybatis: 数据表: CREATE TABLE `user` ( `id` int(10) NOT NULL AUTO_INCREMENT, `username` varchar(120) DEFAULT NULL, `password` varchar(50) DEFAULT NULL, `gender` varchar(10) DEFAULT NULL, `birthday` date DEFAULT NULL, PRIMA…