美文网首页
【Eclipse】使用Mybatis Generator提高你的

【Eclipse】使用Mybatis Generator提高你的

作者: lyn0130 | 来源:发表于2017-05-19 14:23 被阅读669次

    安装MyBatis Generator插件

    两种安装方式

    1. 在Eclipse的插件市场,搜索MyBatis Generator,直接点击安装即可
    打开Eclipse插件市场 搜索MyBatis Generator
    2.手动配置更新网站到https://dl.bintray.com/mybatis/mybatis-generator,然后到下载插件压缩包https://github.com/mybatis/generator/releases,安装插件即可 2.1 Install New Software 2.2 点击Add 2.3 Add Repository 2.4 选择Mybatis Generator,下一步下一步安装即可

    如何使用

    1. 创建配置文件
      1.1 File>New>Other...
      新建文件
      1.2 选择Mybatis Generator Configuration File
    Mybatis Generator Configuration File
    1. 填写配置文件,以下几个为必填项。另外需要配置classPathEntrygeneratorConfiguration节点下。
      <pre>
      jdbcConnection 指定数据库连接信息
      javaModelGenerator 指定目标项目和包
      sqlMapGenerator 指定目标项目和包
      javaClientGenerator
      table 至少一个数据库表
      </pre>
      我的配置如下所示:
      <pre>
      <generatorConfiguration>
      <classPathEntry location="/Users/liyanan/Downloads/mysql-connector-java-6.0.6.jar" />
      <context id="context1">
      <jdbcConnection connectionURL="jdbc:mysql://192.168.1.1:3306/dbname" driverClass="com.mysql.jdbc.Driver" password="mengmidogwhere2020" userId="root" />
      <javaModelGenerator targetPackage="com.lyn.keepdata" targetProject="KeepData" />
      <sqlMapGenerator targetPackage="com.lyn.keepdata" targetProject="KeepData" />
      <javaClientGenerator targetPackage="com.lyn.keepdata" targetProject="KeepData" type="XMLMAPPER" />
      <table tableName="backend_menu">
      </table>
      </context>
      </generatorConfiguration>
      </pre>

    -EOF-

    相关文章

      网友评论

          本文标题:【Eclipse】使用Mybatis Generator提高你的

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