首先导入依赖
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.3.6</version>
</dependency>
重点来了
配置文件
<table schema="" tableName="sys_account">
<generatedKey column="sys_id" sqlStatement="Mysql" />
<domainObjectRenamingRule searchString="^Sys" replaceString="" />
<columnRenamingRule searchString="^[^_]+" replaceString=""/>
</table>
如果是匹配所有表
<table schema="" tableName="sys%">
<generatedKey column="sys_id" sqlStatement="Mysql" />
<domainObjectRenamingRule searchString="^Sys" replaceString="" />
<columnRenamingRule searchString="^[^_]+" replaceString=""/>
</table>
原文:https://www.cnblogs.com/sgy-90s/p/11440887.html