Skip to content

TokgoRonin/code-generator-jimmer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

该插件是为jimmer设计的,目的是生成表对应的实体接口以及dao层,当前只适配了mysql数据库,后续会适配oracle数据库。 H2、Postgres不了解,SqlServer只在16年实习时使用过,所以该3种数据库暂时没有适配的计划。 如果有用户反馈确实需要的话,可以联系我适配。

以下为一个使用该插件的示例:

  <build>
        <plugins>
            <plugin>
                <groupId>io.github.tokgoronin</groupId>
                <artifactId>jimmerCodeGen-maven-plugin</artifactId>
                <version>0.0.3</version>
                <configuration>
                    <!-- 必选项:生成java代码或kotlin代码 -->
                    <codeType>java</codeType>
                    
                    <!-- 必选项:jdbc配置 -->
                    <jdbcConfig>
                        <driver>com.mysql.jdbc.Driver</driver>
                        <url>jdbc:mysql://localhost:3306/databaseName?characterEncoding=utf-8&amp;useSSL=false&amp;allowMultiQueries=true</url>
                        <username>username</username>
                        <password>password</password>
                    </jdbcConfig>
                    
                    <!-- 需要生成的表,如果不写的话,默认生成所有的表 -->
                    <tables>
                        <table>d_role</table>
                        <table>d_user</table>
                        <table>d_permission</table>
                    </tables>

                    <!-- 忽略表前缀 -->
                    <tablePrefix>d_</tablePrefix>
                    <!-- 是否生成dao -->
                    <daos>true</daos>
                    
                    <!-- 
                        这两个配置联合起来决定最终生成的文件存放路径,注:src前不要加/
                        该示例中,最终生成的代码路径为:
                        entity: /src/main/java/com/example/codegendemo/entity
                        dao: /src/main/java/com/example/codegendemo/dao
                    -->
                    <!-- 生成的文件存放的路径 -->
                    <sourcePath>src/main/java/</sourcePath>
                    <!-- 生成的文件存放的包名 -->
                    <packagePath>com.example.codegendemo</packagePath>
                </configuration>
            </plugin>
        </plugins>
    </build>

运行该插件后生成的目录如下: img.png

生成的实体接口如下: img_1.png

生成的dao如下: img_2.png

注意事项:

  1. 每张表生成的entity为2个接口,xxxBase接口每次生成时不会覆盖,用于编写关联关系、公用的属性等。 xxx继承xxxBase,每次生成会覆盖xxx,所以不要修改xxx,否则每次生成前,自行保存修改。
  2. 如果配置了<daos>true</daos>则会生成对应的xxxDao和BaseDao,xxxDao继承BaseDao,BaseDao包含了增删改查、批量添加、批量删除等操作。

About

用与给jimmer生成实体接口。

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages