优化帮助文档
This commit is contained in:
parent
e46f8b9665
commit
11ef791d7d
|
@ -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启动运行)
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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-devtools,diboot-core会被自动引入,无需再配置依赖。
|
|
@ -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)
|
||||
|
Loading…
Reference in New Issue