IDEA逆向工程方式生成Mysql的表对应model

1、IDEA连接数据库

菜单View→Tool Windows→Database打开数据库工具窗口


image.png
2、输入数据库信息
image.png
3、修改脚本
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
5、把model拷贝到项目中。

你可能感兴趣的:(IDEA逆向工程方式生成Mysql的表对应model)