diff --git a/README.md b/README.md index 6a768d4c..4377b130 100644 --- a/README.md +++ b/README.md @@ -1,39 +1,93 @@ -# ssssssss +

+ +

+

+ + + maven + + + + + + + +

-#### 介绍 -{**以下是码云平台说明,您可以替换此简介** -码云是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN)。专为开发者提供稳定、高效、安全的云端软件开发协作平台 -无论是个人、团队、或是企业,都能够用码云实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)} +# 特性 +- 以XML为基础,自动映射HTTP接口 +- 支持MySQL、MariaDB、Oracle、DB2、PostgreSQL、SQLServer 等多种数据库 +- 支持参数自动校验以及自定义参数校验 +- 支持分页查询以及自定义分页查询 +- 支持XML中调用java方法 +- 支持执行多条sql语句 +- 自动热更新 +- ~~支持单表自动映射CRUD~~ +- ~~支持缓存~~ +- ~~支持多数据源~~ +- ~~支持主键自动生成,可自定义配置主键生成策略(正在开发中)~~ +- ~~支持调用存储过程~~ -#### 软件架构 -软件架构说明 +# 快速开始 +## maven引入 +```xml + + + org.ssssssss + ssssssss-spring-boot-starter + 0.0.1 + +``` +## 修改application.properties -#### 安装教程 +```properties +server.port=9999 +#配置ssssssss的xml所在位置 +ssssssss.xml-locations: classpath*:ssssssss/*.xml +#以下配置需跟实际情况修改 +spring.datasource.url=jdbc:mysql://localhost/test +spring.datasource.username=root +spring.datasource.password=123456789 +spring.datasource.driver-class-name=com.mysql.jdbc.Driver +``` -1. xxxx -2. xxxx -3. xxxx +## 创建XML -#### 使用说明 +在`src/main/resources/ssssssss/`下建立`user.xml`文件 +```xml + + + + + + select username,password from sys_user + + +``` -1. xxxx -2. xxxx -3. xxxx +## 测试 +访问`http://localhost:9999/user/list` -#### 参与贡献 +结果如下: +```json +{ + "code": 1, + "message": "success", + "data": { + "total": 2, + "list": [{ + "password": "123456", + "username": "admin" + }, { + "password": "1234567", + "username": "1234567" + }] + }, + "timestamp": 1588586539249 +} +``` -1. Fork 本仓库 -2. 新建 Feat_xxx 分支 -3. 提交代码 -4. 新建 Pull Request - - -#### 码云特技 - -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/) +# 其他开源项目 +- [ssssssss-spring-boot-starter](https://gitee.com/jmxd/ssssssss-spring-boot-starter) +- [spider-flow,新一代爬虫平台,以图形化方式定义爬虫流程,不写代码即可完成爬虫](https://gitee.com/jmxd/spider-flow) \ No newline at end of file