zoukankan      html  css  js  c++  java
  • Mybatis Generator 代码生成配置

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
    <generatorConfiguration>
      <context id="context1">
        <commentGenerator>  
            <!-- 是否去除自动生成的注释 true:是 : false:否 -->  
            <property name="suppressAllComments" value="true"/>  
        </commentGenerator>  
        <jdbcConnection connectionURL="jdbc:mysql://localhost:3306/how2java" driverClass="com.mysql.jdbc.Driver" password="root" userId="root" />
        <javaModelGenerator targetPackage="pojo" targetProject="mybatis" />
        <sqlMapGenerator targetPackage="mapper" targetProject="mybatis" />
        <javaClientGenerator targetPackage="dao" targetProject="mybatis" type="XMLMAPPER" />
        <table schema="how2java" tableName="category_"  domainObjectName="categoryDo"
        enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false"
        enableSelectByExample="false" selectByExampleQueryId="false">
          <columnOverride column="name" property="categoryName" />
        </table>
        <table schema="how2java" tableName="order_"  domainObjectName="orderDo"
        enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false"
        enableSelectByExample="false" selectByExampleQueryId="false">
          <columnOverride column="name" property="categoryName" />
        </table>
        <table schema="how2java" tableName="order_item_"  domainObjectName="orderItemDo"
        enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false"
        enableSelectByExample="false" selectByExampleQueryId="false">
    <!--       <columnOverride column="name" property="categoryName" /> -->
        </table>
      </context>
    </generatorConfiguration>
  • 相关阅读:
    第60天:Requests的基本用法
    第59天: Web 开发 Django 模型
    第58天: Web 开发 Django 入门
    第57天: Flask 用户登录 Flask-Login
    第56天:urllib 包基本使用
    第55天:爬虫的介绍
    第54天:Python 多线程 Event
    第53天: Python 线程池
    第52天:python multiprocessing模块
    第51天: Python Queue 入门
  • 原文地址:https://www.cnblogs.com/thiaoqueen/p/7775943.html
Copyright © 2011-2022 走看看