Versions Compared
Key
- This line was added.
- This line was removed.
- Formatting was changed.
gen dao
命令是CLI
中最频繁使用、也是框架设计的工程规范能否准确落地的关键命令。该命令用于生成dao
数据访问对象、do
数据转化模型及entity
实例数据模型Go
代码文件。由于该命令的参数、选项较多,我们推荐使用配置文件来管理生成规则。
Tip |
---|
关于框架项目工程规范介绍请查看 代码分层设计 章节。 |
使用方式
大部分场景下,进入项目根目录执行 gf gen dao
即可。以下为命令行帮助信息。
Code Block | ||
---|---|---|
| ||
$ gf gen dao -h
USAGE
gf gen dao [OPTION]
OPTION
-p, --path directory path for generated files
-l, --link database configuration, the same as the ORM configuration of GoFrame
-t, --tables generate models only for given tables, multiple table names separated with ','
-x, --tablesEx generate models excluding given tables, multiple table names separated with ','
-g, --group specifying the configuration group name of database for generated ORM instance,
it's not necessary and the default value is "default"
-f, --prefix add prefix for all table of specified link/database tables
-r, --removePrefix remove specified prefix of the table, multiple prefix separated with ','
-rf, --removeFieldPrefix remove specified prefix of the field, multiple prefix separated with ','
-j, --jsonCase generated json tag case for model struct, cases are as follows:
| Case | Example |
|---------------- |--------------------|
| Camel | AnyKindOfString |
| CamelLower | anyKindOfString | default
| Snake | any_kind_of_string |
| SnakeScreaming | ANY_KIND_OF_STRING |
| SnakeFirstUpper | rgb_code_md5 |
| Kebab | any-kind-of-string |
| KebabScreaming | ANY-KIND-OF-STRING |
-i, --importPrefix custom import prefix for generated go files
-d, --daoPath directory path for storing generated dao files under path
-o, --doPath directory path for storing generated do files under path
-e, --entityPath directory path for storing generated entity files under path
-t1, --tplDaoIndexPath template file path for dao index file
-t2, --tplDaoInternalPath template file path for dao internal file
-t3, --tplDaoDoPath template file path for dao do file
-t4, --tplDaoEntityPath template file path for dao entity file
-s, --stdTime use time.Time from stdlib instead of gtime.Time for generated time/date fields of tables
-w, --withTime add created time for auto produced go files
-n, --gJsonSupport use gJsonSupport to use *gjson.Json instead of string for generated json fields of
tables
-v, --overwriteDao overwrite all dao files both inside/outside internal folder
-c, --descriptionTag add comment to description tag for each field
-k, --noJsonTag no json tag will be added for each field
-m, --noModelComment no model comment will be added for each field
-a, --clear delete all generated go files that do not exist in database
-y, --typeMapping custom local type mapping for generated struct attributes relevant to fields of table
-h, --help more information about this command
EXAMPLE
gf gen dao
gf gen dao -l "mysql:root:12345678@tcp(127.0.0.1:3306)/test"
gf gen dao -p ./model -g user-center -t user,user_detail,user_login
gf gen dao -r user_
CONFIGURATION SUPPORT
Options are also supported by configuration file.
It's suggested using configuration file instead of command line arguments making producing.
The configuration node name is "gfcli.gen.dao", which also supports multiple databases, for example(config.yaml):
gfcli:
gen:
dao:
- link: "mysql:root:12345678@tcp(127.0.0.1:3306)/test"
tables: "order,products"
jsonCase: "CamelLower"
- link: "mysql:root:12345678@tcp(127.0.0.1:3306)/primary"
path: "./my-app"
prefix: "primary_"
tables: "user, userDetail"
typeMapping:
decimal:
type: decimal.Decimal
import: github.com/shopspring/decimal
numeric:
type: string |
Tip |
---|
如果使用框架推荐的项目工程脚手架,并且系统安装了 |
配置示例
/hack/config.yaml
Code Block | ||
---|---|---|
| ||
gfcli: gen: dao: - link: "mysql:root:12345678@tcp(127.0.0.1:3306)/test" tables: "order,products" jsonCase: "CamelLower" - link: "mysql:root:12345678@tcp(127.0.0.1:3306)/primary" path: "./my-app" prefix: "primary_" tables: "user, userDetail" # sqlite需要自行编译带sqlite驱动的gf,下载库代码后修改路径文件(gf\cmd\gf\internal\cmd\cmd_gen_dao.go)的import包,取消注释即可。sqlite驱动依赖了gcc - link: "sqlite:./file.db" |
参数说明
名称 |
---|
默认值 | 含义 | 示例 |
---|---|---|
gfcli.gen.dao |
dao 代码生成配置项,可以有多个配置项构成数组,支持多个数据库生成。不同的数据库可以设置不同的生成规则,例如可以生成到不同的位置或者文件。 | - | ||
|
必须参数 | 分为两部分,第一部分表示你连接的数据库类型mysql , postgresql 等, 第二部分就是连接数据库的dsn 信息。具体请参考 ORM使用配置 章节。 | - | |
path | internal | 生成 | ./app |
group | default | 在数据库配置中的数据库分组名称。只能配置一个名称。数据库在配置文件中的分组名称往往确定之后便不再修改。 |
|
prefix | 生成数据库对象及文件的前缀,以便区分不同数据库或者不同数据库中的相同表名,防止数据表同名覆盖。 |
| |
removePrefix | 删除数据表的指定前缀名称。多个前缀以, 号分隔。 | gf_ | |
removeFieldPrefix | 删除字段名称的指定前缀名称。多个前缀以, 号分隔。 | f_ | |
tables | 指定当前数据库中需要执行代码生成的数据表。如果为空,表示数据库的所有表都会生成。 | user, user_detail | |
tablesEx | Tables Excluding ,指定当前数据库中需要排除代码生成的数据表。 | product, order | |
jsonCase | CamelLower | 指定 | Snake |
stdTime | false | 当数据表字段类型为时间类型时,代码生成的属性类型使用标准库的 | true |
withTime | false | 为每个自动生成的代码文件增加生成时间注释 | |
gJsonSupport | false | 当数据表字段类型为 | true |
overwriteDao | false | 每次生成dao 代码时是否重新生成覆盖dao/internal 目录外层的文件。注意dao/internal 目录外层的文件可能由开发者自定义扩展了功能,覆盖可能会产生风险。 | true |
importPrefix | 通过go.mod 自动检测 | 用于指定生成 | github.com/gogf/gf |
descriptionTag | false | 用于指定是否为数据模型结构体属性增加 | true |
noJsonTag | false | 生成的数据模型中,字段不带有json标签 | |
noModelComment | false | 用于指定是否关闭数据模型结构体属性的注释自动生成,内容为数据表对应字段的注释。 | true |
clear | false | 自动删除数据库中不存在对应数据表的本地dao/do/entity 代码文件。请谨慎使用该参数! | |
typeMapping | decimal: type: float64 money: type: float64 numeric: type: float64 smallmoney: type: float64 | 从版本v2.5开始支持。 用于自定义数据表字段类型到生成的Go文件中对应属性类型映射。该配置支持通过
| |
daoPath | dao | 代码生成的DAO 文件存放目录 | |
doPath | model/do | 代码生成DO 文件存放目录 | |
entityPath | model/entity | 代码生成的Entity 文件存放目录 | |
tplDaoIndexPath | 自定义DAO Index 代码生成模板文件路径,使用该参数请参考源码 | ||
tplDaoInternalPath | 自定义DAO Internal 代码生成模板文件路径,使用该参数请参考源码 | ||
tplDaoDoPath | 自定义DO 代码生成模板文件路径,使用该参数请参考源码 | ||
tplDaoEntityPath | 自定义Entity 代码生成模板文件路径,使用该参数请参考源码 |
使用示例
仓库地址:https://github.com/gogf/focus-single
1、以下3
个目录的文件由dao
命令生成:
路径 | 说明 | 详细介绍 |
---|---|---|
/internal/dao | 数据操作对象 | 通过对象方式访问底层数据源,底层基于ORM组件实现。往往需要结合通过对象方式访问底层数据源,底层基于ORM 组件实现。往往需要结合entity 和do 通用使用。该目录下的文件开发者可扩展修改,但是往往没这种必要。 |
/internal/model/do | 数据转换模型 数据转换模型用于业务模型到数据模型的转换,由工具维护,用户不能修改。 工具每次生成代码文件将会覆盖该目录。 | 数据转换模型用于业务模型到数据模型的转换,由工具维护,用户不能修改。工具每次生成代码文件将会覆盖该目录。关于 |
/internal/model/entity | 数据模型 | 数据模型由工具维护,用户不能修改。工具每次生成代码文件将会覆盖该目录。 |
2、model
中的模型分为两类:数据模型和业务模型。
数据模型:通过CLI
工具自动生成 model/entity
目录文件,数据库的数据表都会生成到该目录下,这个目录下的文件对应的模型为数据模型。数据模型即与数据表一一对应的数据结构,开发者往往不需要去修改并且也不应该去修改,数据模型只有在数据表结构变更时通过CLI
工具自动更新。数据模型由CLI
工具生成及统一维护。
业务模型:业务模型即是与业务相关的数据结构,按需定义,例如service
的输入输出数据结构定义、内部的一些数据结构定义等。业务模型由开发者根据业务需要自行定义维护,定义到model
目录下。
3、dao
中的文件按照数据表名称进行命名,一个数据表一个文件及其一个对应的DAO
对象。操作数据表即是通过DAO
对象以及相关操作方法实现。dao
操作采用规范化设计,必须传递ctx
参数,并在生成的代码中必须通过Ctx
或者Transaction
方法创建对象来链式操作数据表。
注意事项
需要手动编译的数据库类型
gen dao
命令涉及到数据访问相关代码生成时,默认支持常用的若干类型数据库。如果需要Oracle
数据库类型支持,需要开发者自己修改源码文件后自行本地手动编译生成CLI
工具随后安装,因为这两个数据库的驱动需要CGO
支持,无法预编译生成给大家直接使用。
关于bool
类型对应的数据表字段
由于大部分数据库类型都没有bool
类型的数据表字段类型,我们推荐使用bit(1)
来代替bool
类型。gen dao
命令会自动识别bit(1)
数据表字段并生成bool
类型的属性。此外,我们不推荐使用tinyint(1)
作为bool
类型。
例如,表字段:
生成的属性:
Panel | ||
---|---|---|
| ||
|