首页 > 其他 > 详细

mybatis逆向工程去除表前缀和字段前缀的配置

时间:2019-08-31 23:19:27      阅读:602      评论:0      收藏:0      [点我收藏+]

技术分享图片

 

 

 首先导入依赖

<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>


mybatis逆向工程去除表前缀和字段前缀的配置

原文:https://www.cnblogs.com/sgy-90s/p/11440887.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!