去掉Mybatis Generator生成的一堆 example

    <table tableName="%"
            enableInsert="true"
            enableDeleteByPrimaryKey="true"
            enableSelectByPrimaryKey="true"
            enableUpdateByPrimaryKey="true"
            enableCountByExample="false"
            enableDeleteByExample="false"
            enableSelectByExample="false"
            enableUpdateByExample="false"
            >
            <generatedKey column="id" sqlStatement="Mysql" identity="true"/>
        </table>

默认的情况下  默认是会生成的  我们需要显式的设置

原文地址:https://www.cnblogs.com/zr520/p/5879964.html