# Springboot-mybatisplus-Swagger
**Repository Path**: java521/Springboot-mybatisplus-Swagger
## Basic Information
- **Project Name**: Springboot-mybatisplus-Swagger
- **Description**: Springboot+mybatis-plus+Swagger初始环境搭建+demo演示
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 3
- **Forks**: 0
- **Created**: 2018-09-11
- **Last Updated**: 2022-01-07
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Springboot-mybatisplus-Swagger
#### 项目介绍
Springboot+mybatis-plus+Swagger初始环境搭建+demo演示
环境的继承,mybatis-plus的代码生成,以及swagger接口文档的展示。
SpringBoot配置热部署
---
org.springframework
springloaded
org.springframework.boot
spring-boot-devtools
Sql文件
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for tbl_employee
-- ----------------------------
DROP TABLE IF EXISTS `tbl_employee`;
CREATE TABLE `tbl_employee` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`last_name` varchar(50) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
`gender` char(1) DEFAULT NULL,
`age` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;

