book-api/maku-boot-module/README.md
2022-10-11 11:14:28 +08:00

21 lines
741 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 说明
maku-boot 是采用组件模式,扩展不同的业务功能,可以很方便的实现各种业务需求,且不会导致系统臃肿,若想使用某个组件,按需引入即可,反之亦然。
## 引入
如果需要使用对应的组件,如:`maku-boot-quartz`,则需要在`maku-boot/maku-server/pom.xml`里面引入,如下所示:
```xml
<dependency>
<groupId>net.maku</groupId>
<artifactId>maku-boot-quartz</artifactId>
<version>${revision}</version>
</dependency>
```
## SQL语句
引入组件时还需要执行对应的SQL文件初始化表结构和菜单等。
如果使用的是MySQL数据库则需要执行以下SQL文件
```
maku-boot/db/mysql/module/maku-module-quartz.sql
```