项目描述
这是一个简单的springboot+mybatis+mysql的搭建项目,可以直接用,SpringbootdemoApplication直接运行
运行环境
jdk8+mysql+IntelliJ IDEA+maven
项目技术(必填)
springboot+mybatis+jsp
数据库 表创建sql
-- ----------------------------
-- Table structure for student
-- ----------------------------
DROP TABLE IF EXISTS `student`;
CREATE TABLE `student` (
`id` int(11) DEFAULT NULL,
`student_id` int(11) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`age` int(11) DEFAULT NULL,
`sex` varchar(10) DEFAULT NULL,
`birthday` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
项目截图(必填)
运行截图(必填)
注意事项