优化帮助文档

This commit is contained in:
mazhicheng 2019-11-06 14:55:14 +08:00
parent e46f8b9665
commit 11ef791d7d
5 changed files with 17 additions and 7 deletions

View File

@ -5,7 +5,7 @@
</p>
# diboot-v2
> [diboot的设计目标](https://segmentfault.com/a/1190000020906742):面向开发人员的低代码开发平台,将重复性的工作自动化,提高质量、效率、可维护性。
> [设计目标](https://segmentfault.com/a/1190000020906742):面向开发人员的低代码开发平台,将重复性的工作自动化,提高质量、效率、可维护性。
diboot 2.0版本,实现: diboot-core全新内核 + diboot-devtools代码生成平台 + 基础功能组件。
@ -27,7 +27,7 @@ diboot 2.0版本,实现: diboot-core全新内核 + diboot-devtools代码生成
## 二、 diboot-devtools 代码生成工具 [(我要试试)](https://github.com/dibo-software/diboot-v2/blob/master/diboot-docs/guide/diboot-devtools/%E4%BB%8B%E7%BB%8D.md)
## 二、 diboot-devtools 代码生成工具 [(我要试试)](https://www.diboot.com/guide/diboot-devtools/%E4%BB%8B%E7%BB%8D.html)
##### 1. 支持多数据库MySQL、MariaDB、ORACLE、SQLServer、PostgreSQL
##### 2. 使用很简单引入依赖jar配置参数后即可随SpringBoot启动运行

View File

@ -58,7 +58,8 @@ compile("com.diboot:diboot-core-spring-boot-starter:2.0.3-RC1")
<version>2.0.3-RC1</version>
</dependency>
~~~
> 注: @BindDict注解需要依赖dictionary表初次启动时starter会自动创建该表。
> * 使用diboot-devtools会自动引入diboot-core无需配置此依赖。
> * @BindDict注解需要依赖dictionary表初次启动时starter会自动创建该表。
### 2. 定义你的Service继承diboot的BaseService或Mybatis-plus的ISerivice及Mapper

View File

@ -17,4 +17,8 @@ MySQL、MariaDB、ORACLE、SQLServer、PostgreSQL
## diboot-core使用
请参考 [diboot-core README](https://github.com/dibo-software/diboot-v2/tree/master/diboot-core)
使用步骤请参考 [diboot-core README](https://github.com/dibo-software/diboot-v2/tree/master/diboot-core)
参考样例 [diboot-core-example](https://github.com/dibo-software/diboot-v2-example/tree/master/diboot-core-example)
> 如果您使用diboot-devtoolsdiboot-core会被自动引入无需再配置依赖。

View File

@ -1,6 +1,7 @@
# 开始使用
创建一个空的 Spring Boot 工程
可以使用 [Spring Initializer](https://start.spring.io/),快速初始化一个 Spring Boot 工程
## 创建新的Spring Boot web项目
推荐使用 [Spring Initializer](https://start.spring.io/),快速初始化一个 Spring Boot 工程。
## 引入依赖
* Gradle项目引入依赖
```
@ -87,3 +88,7 @@ diboot-devtools在初次运行中会自动安装所需数据库表如果
```
diboot.devtools.disabled=true
```
## 参考样例
devtools使用样例(gradle配置) [diboot-devtools-example](https://github.com/dibo-software/diboot-v2-example/tree/master/diboot-devtools-example)