美文网首页
MyBatis使用注意事项

MyBatis使用注意事项

作者: PC_Repair | 来源:发表于2018-10-14 18:09 被阅读57次

    (1).MyBatis逆向工程使用过程中由于参考的配置文件有所细节上的差别,有时候会产生文件的重叠或产生其他数据库中数据报的文件。

    • 解决方法1:tableNamedomainObjectName在整个数据库中唯一
    <table tableName="bank_users" domainObjectName="BankUser" >
            <property name="my.isgen.usekeys" value="true"/>
            <property name="useActualColumnNames" value="false"/>
    </table>
    
    • 解决方法2:指明schema
    <table schema="banksystem" tableName="bank_users" domainObjectName="User" >
            <property name="my.isgen.usekeys" value="true"/>
            <property name="useActualColumnNames" value="false"/>
    </table>
    

    相关文章

      网友评论

          本文标题:MyBatis使用注意事项

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