HCodeRunner 2016-11-01 01:43 采纳率: 20%
浏览 2534

使用Mybatis-Generator出错,找不到is_autoincrement列……

图片说明

<classPathEntry  location="WebContent\WEB-INF\lib\mysql-connector-java-5.0.3-bin.jar"/>  
<context id="DB2Tables"  targetRuntime="MyBatis3">  
    <commentGenerator>  
        <property name="suppressDate" value="true"/>  
        <!-- 是否去除自动生成的注释 true:是 : false:否 -->  
        <property name="suppressAllComments" value="true"/>  
    </commentGenerator>  
    <!--数据库链接URL,用户名、密码 -->  
    <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/cy11" userId="root" password="root">  
    </jdbcConnection>  
    <javaTypeResolver>  
        <property name="forceBigDecimals" value="false"/>  
    </javaTypeResolver>  
    <!-- 生成模型的包名和位置-->  
    <javaModelGenerator targetPackage="com.shuai.model" targetProject="springmvc02">  
        <property name="enableSubPackages" value="true"/>  
        <property name="trimStrings" value="true"/>  
    </javaModelGenerator>  
    <!-- 生成映射文件的包名和位置-->  
    <sqlMapGenerator targetPackage="com.shuai.model" targetProject="springmvc02">  
        <property name="enableSubPackages" value="true"/>  
    </sqlMapGenerator>  
    <!-- 生成DAO的包名和位置-->  
    <javaClientGenerator type="XMLMAPPER" targetPackage="com.shuai.dao" targetProject="springmvc02">  
        <property name="enableSubPackages" value="true"/>  
    </javaClientGenerator>  
    <!-- 要生成哪些表-->  
    <table tableName="book" domainObjectName="Book" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>  
    <table tableName="section" domainObjectName="Section" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>  
    <table tableName="subject" domainObjectName="Subject" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>  
</context>  
  • 写回答

1条回答

  • GEEK JUMP 全栈领域新星创作者 2016-11-10 05:03
    关注

    推荐你在eclipse里面添加mybatis逆向工程插件的方式,比你这个命令行方便。
    http://download.csdn.net/detail/xyz_dream/9676672

    评论

报告相同问题?

悬赏问题

  • ¥15 Qt下使用tcp获取数据的详细操作
  • ¥15 idea右下角设置编码是灰色的
  • ¥15 全志H618ROM新增分区
  • ¥15 在grasshopper里DrawViewportWires更改预览后,禁用电池仍然显示
  • ¥15 NAO机器人的录音程序保存问题
  • ¥15 C#读写EXCEL文件,不同编译
  • ¥15 MapReduce结果输出到HBase,一直连接不上MySQL
  • ¥15 扩散模型sd.webui使用时报错“Nonetype”
  • ¥15 stm32流水灯+呼吸灯+外部中断按键
  • ¥15 将二维数组,按照假设的规定,如0/1/0 == "4",把对应列位置写成一个字符并打印输出该字符