美文网首页
IDEA逆向工程方式生成Mysql的表对应model

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

作者: CoderLJW | 来源:发表于2019-12-01 22:02 被阅读0次
    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

          本文链接:https://www.haomeiwen.com/subject/kyutgctx.html