# SpringBoot-Mybatis-XML **Repository Path**: leroprojects/SpringBoot-Mybatis-XML ## Basic Information - **Project Name**: SpringBoot-Mybatis-XML - **Description**: 基于SpringBoot+Mybatis的XML版本的脚手架 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-07-27 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SpringBoot-Mybatis-XML #### 项目介绍 基于SpringBoot+Mybatis的XML版本的脚手架 #### 软件架构 > 核心技术:SpringBoot(1.5.14.RELEASE) | Mybatis(1.3.2) > 涉及到的周边技术主要有:视图Thymeleaf | 数据库mysql(5.0+) | 日志Logback | 连接池Druid > 技术依赖环境:maven(3.9) | jdk(7) |tomcat(7) > 开发工具:IntelliJDEA(15.0.6) | git > 热部署:JRebel #### 使用说明 1. 克隆本项目到IntelliJDEA中 2. 把database下的test.sql文件导入自己的数据库 3. 修改application.properties配置文件中的数据库以及对应的账号和密码 4. 在浏览器输入地址测试 > http://localhost:8080/testReturnJson(测试返回ajax数据) > http://localhost:8080/testReturnView(测试返回html视图,查看Thymeleaf渲染结果) > http://localhost:8080/testInsert(测试mybatis整合,并在数据库查看新增数据) > http://localhost:8080/testSelectByPager(测试mybatis分页) > http://localhost:8080/druid/login.html(测试Druid性能监控,输入账号lero,密码admin) > http://localhost:8080/testLogback(测试Logback日志) #### 版本变更 2018-07-25 > 初始化SpringBoot+Mybatis基于XML脚手架 > 集成了Mybatis的代码生成器