Skip to content

Commit

Permalink
v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ibabamu committed Jan 17, 2023
1 parent 1b6df6e commit dd1ddfe
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 14 deletions.
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
## 项目说明

- maku-generator是一款低代码生成器,可根据自定义模板内容,快速生成代码,可实现项目的快速开发、上线,减少重复的代码编写,开发人员只需专注业务逻辑即可。
- 开发文档:https://maku.net/docs/maku-generator
- 演示环境:https://demo.maku.net/maku-generator


## 项目特点

- 友好的代码结构及注释,便于阅读及二次开发
- 支持spring boot starter,能很方便集成到第三方项目
- 支持通过配置数据源,快速生成CRUD代码,减少重复工作
Expand All @@ -13,6 +14,7 @@
- 支持批量导入表、批量生成代码以及同步表结构等功能

## 本地启动

- 通过git下载源码
- 如使用MySQL8.0(其他数据库类似),则创建数据库maku_generator,数据库编码为utf8mb4
- 执行db/mysql.sql文件,初始化数据
Expand All @@ -21,7 +23,9 @@
- 项目访问路径:http://localhost:8088/maku-generator/index.html

## maven依赖引入

### SpringBoot 2.x,依赖如下:

```xml
<dependency>
<groupId>net.maku</groupId>
Expand All @@ -31,31 +35,34 @@
```

### SpringBoot 3.x,依赖如下:

```xml
<dependency>
<groupId>net.maku</groupId>
<artifactId>maku-generator-boot-starter</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</dependency>
```


## 交流和反馈

- 官网地址:https://maku.net
- Gitee仓库:https://gitee.com/makunet/maku-generator
- Github仓库:https://github.com/makunet/maku-generator


## 微信交流群

为了更好的交流,我们新提供了微信交流群,需扫描下面的二维码,关注公众号,回复【加群】,根据提示信息,作者会拉你进群的,感谢配合!

![输入图片说明](images/qrcode.png)

## 支持
如果觉得框架还不错,或者已经在使用了,希望你可以去 [Github](https://github.com/makunet/maku-generator)[Gitee](https://gitee.com/makunet/maku-generator) 帮作者点个 ⭐ Star,这将是对作者极大的鼓励与支持。

如果觉得框架还不错,或者已经在使用了,希望你可以去 [Github](https://github.com/makunet/maku-generator)
[Gitee](https://gitee.com/makunet/maku-generator) 帮作者点个 ⭐ Star,这将是对作者极大的鼓励与支持。

## 效果图

![输入图片说明](images/1.png)

![输入图片说明](images/2.png)
Expand Down
6 changes: 3 additions & 3 deletions maku-generator-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>maku-generator-boot-starter</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
<packaging>jar</packaging>

<parent>
<groupId>net.maku</groupId>
<artifactId>maku-generator</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</parent>

<dependencies>
<dependency>
<groupId>net.maku</groupId>
<artifactId>maku-generator-core</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
4 changes: 2 additions & 2 deletions maku-generator-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>maku-generator-core</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
<packaging>jar</packaging>

<parent>
<groupId>net.maku</groupId>
<artifactId>maku-generator</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</parent>

<properties>
Expand Down
6 changes: 3 additions & 3 deletions maku-generator-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>maku-generator-server</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
<packaging>jar</packaging>

<parent>
<groupId>net.maku</groupId>
<artifactId>maku-generator</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</parent>

<dependencies>
Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>net.maku</groupId>
<artifactId>maku-generator-boot-starter</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.maku</groupId>
<artifactId>maku-generator</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
<packaging>pom</packaging>

<name>maku-generator</name>
Expand Down

0 comments on commit dd1ddfe

Please sign in to comment.