去掉Mybatis Generator生成的一堆Example类

Posted 轻尘如风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了去掉Mybatis Generator生成的一堆Example类相关的知识,希望对你有一定的参考价值。

上篇讲了如何使用Mybatis Generator生成代码,但是再生成过程中,往往出现一大堆的Example类,而这些Example中的很多方法我们是不需要用到的,因此在生成之前我们可以添加如下代码:

<table schema="general" tableName="tb_table_name" domainObjectName="EntityName"
    enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false"
    enableSelectByExample="false" selectByExampleQueryId="false" >
    <property name="useActualColumnNames" value="true"/>
</table>

 右击项目--->run as--->maven build就OK啦!

以上是关于去掉Mybatis Generator生成的一堆Example类的主要内容,如果未能解决你的问题,请参考以下文章

去掉Mybatis Generator生成的example

求助,急,Mybatis generator去掉前缀

使用Mybatis 代码生成工具

怎样利用 eclipse mybatis generator 自动生成代码

MyBatis使用Generator自动生成代码

mybatis-generator代码生成报错?