gpt4 book ai didi

mybatis自动生成时如何设置不生成Example类详解

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章mybatis自动生成时如何设置不生成Example类详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文主要给大家介绍了关于mybatis自动生成时不生成Example类的相关内容,分享出来供大家参考学习,下面来看看详细的介绍:

只需要在配置要生成的table表中添加几个配置属性就行了.

在generatorConfig.xml文件中修改 。

?
1
2
3
4
5
6
7
<!--指定数据库表-->
< table tableName = "t_user" schema = "" >
  < generatedKey column = "userId" sqlStatement = "Mysql" identity = "true" />
</ table >
< table tableName = "t_scene" schema = "" >
  < generatedKey column = "sceneId" sqlStatement = "Mysql" identity = "true" />
</ table >

修改如下:

?
1
2
3
4
5
6
7
8
9
<!--指定数据库表-->
< table tableName = "t_user" schema = "" enableCountByExample = "false" enableUpdateByExample = "false" enableDeleteByExample = "false"
  enableSelectByExample = "false" selectByExampleQueryId = "false" >
  < generatedKey column = "userId" sqlStatement = "Mysql" identity = "true" />
</ table >
< table tableName = "t_scene" schema = "" enableCountByExample = "false" enableUpdateByExample = "false" enableDeleteByExample = "false"
  enableSelectByExample = "false" selectByExampleQueryId = "false" >
  < generatedKey column = "sceneId" sqlStatement = "Mysql" identity = "true" />
</ table >

好了,先把之前自动生成的文件删除,重新执行一个generate命令,就可以看见比较清爽的代码内容了~ 。

总结 。

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对我的支持.

原文链接:http://blog.csdn.net/u012679583/article/details/53371034 。

最后此篇关于mybatis自动生成时如何设置不生成Example类详解的文章就讲到这里了,如果你想了解更多关于mybatis自动生成时如何设置不生成Example类详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com