From f408af87778316435f4c0c45ba972cbb8651bb77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E4=B8=9C?= <838425805@qq.com> Date: Tue, 5 May 2020 09:23:24 +0800 Subject: [PATCH 1/3] update README.md. --- README.md | 54 +++++++++++++++--------------------------------------- 1 file changed, 15 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index 6a768d4c..0b04aecd 100644 --- a/README.md +++ b/README.md @@ -1,39 +1,15 @@ -# ssssssss - -#### 介绍 -{**以下是码云平台说明,您可以替换此简介** -码云是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN)。专为开发者提供稳定、高效、安全的云端软件开发协作平台 -无论是个人、团队、或是企业,都能够用码云实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)} - -#### 软件架构 -软件架构说明 - - -#### 安装教程 - -1. xxxx -2. xxxx -3. xxxx - -#### 使用说明 - -1. xxxx -2. xxxx -3. xxxx - -#### 参与贡献 - -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/) +

+ +

+

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

From 2879728042fcf6f2fbd2d514378dd8d1db40b2cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E4=B8=9C?= <838425805@qq.com> Date: Tue, 5 May 2020 09:54:33 +0800 Subject: [PATCH 2/3] update README.md. --- README.md | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 75 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b04aecd..81e06087 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- +

@@ -13,3 +13,77 @@

+ +# 特性 +- 以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 +``` + +## 创建XML + +在`src/main/resources/ssssssss/`下建立`user.xml`文件 +```xml + + + + + + select username,password from sys_user + + +``` + +## 测试 +访问`http://localhost:9999/user/list` + +结果如下: +```json +{ + "code": 1, + "message": "success", + "data": { + "total": 2, + "list": [{ + "password": "123456", + "username": "admin" + }, { + "password": "1234567", + "username": "1234567" + }] + }, + "timestamp": 1588586539249 +} +``` From 1fe3ce60104f842395e17638f291f885bd3fd469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E4=B8=9C?= <838425805@qq.com> Date: Tue, 5 May 2020 10:58:41 +0800 Subject: [PATCH 3/3] update README.md. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 81e06087..4377b130 100644 --- a/README.md +++ b/README.md @@ -87,3 +87,7 @@ spring.datasource.driver-class-name=com.mysql.jdbc.Driver "timestamp": 1588586539249 } ``` + +# 其他开源项目 +- [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