1、IDEA连接数据库
菜单View→Tool Windows→Database打开数据库工具窗口
image.png
2、输入数据库信息
image.png3、修改脚本
image.png# model生成的地方
packageName = "com.xxxx.xxx.domain;"
# 修改成java的包支持的类型
typeMapping = [
(~/(?i)int/) : "Integer",
(~/(?i)float|double|decimal|real/): "double",
(~/(?i)datetime|timestamp/) : "Timestamp",
(~/(?i)date/) : "Date",
(~/(?i)time/) : "Date",
(~/(?i)/) : "String"
]
4、生成model
image.png生成的如下
image.png
网友评论