# learn_sprintboot **Repository Path**: souls/learn_sprintboot ## Basic Information - **Project Name**: learn_sprintboot - **Description**: 学习sprintboot使用 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-11-23 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # learn_springboot spring boot version 2.0 #### 项目介绍 学习sprintboot使用 #### 软件架构 软件架构说明 #### 计划使用说明 1. 初始化 2. Hello Application 3. 单元测试 4. yml配置 5. thymeleaf模板应用 6. JDBC使用,线程池的应用 7. MyBatis应用,druid的应用 8. Redis应用 9. Guava应用 10. 注解的应用 11. 热拔插 12. Spring cloud 13. 拦截器 14. ELK 15. Jetty集成 16. Swagger2接口文档的应用 17. 设计模式 18. 基础类的建设 ### 分支说明 * master ``` 永久最新可用 ``` * dev_1.0 ``` 该版本实现了: 1. 初始化 2. Hello Application 3. 单元测试 4. yml配置 5. thymeleaf模板应用 6. JDBC使用,线程池的应用 7. MyBatis应用, 8. Swagger2应用 9. 设计模式-单例 10. 内基础类的建设 ``` #### 参与贡献 1. http://oopsguy.com/documents/springboot-docs/1.5.4/index.html#getting-started 2. https://gitee.com/souls 3. https://github.com/helloworlde/SpringBoot-DynamicDataSource 4. https://gatling.io/docs/current/installation #### 码云特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. 码云官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解码云上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目 5. 码云官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. 码云封面人物是一档用来展示码云会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) ### 补充 1. 接口文档的访问 * http://127.0.0.1:4001/swagger-ui.html#/ 2. mysql表 ``` CREATE TABLE IF NOT EXISTS `person` ( `id` INT UNSIGNED AUTO_INCREMENT, `name` VARCHAR (100) NOT NULL, `age` INT (11) NOT NULL DEFAULT 0, `sex` INT (11) NOT NULL DEFAULT 0, `createtime` INT (11) NOT NULL DEFAULT 0 COMMENT '创建时间', `updatetime` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '最后更新时间', PRIMARY KEY (`id`) ) ENGINE = INNODB DEFAULT CHARSET = utf8; CREATE TABLE IF NOT EXISTS `product` ( `id` INT UNSIGNED AUTO_INCREMENT, `name` VARCHAR (100) NOT NULL, `price` VARCHAR (100) NOT NULL, `createtime` INT (11) NOT NULL DEFAULT 0 COMMENT '创建时间', `updatetime` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '最后更新时间', PRIMARY KEY (`id`) ) ENGINE = INNODB DEFAULT CHARSET = utf8; ```