码迷,mamicode.com
首页 > 移动开发 > 详细

使用Mybatis-Generator自动生成Dao、Model、Mapping相关文件

时间:2019-04-10 11:45:42      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:框架   pre   blank   代码   href   target   打印   --   利用   

Mybatis属于半自动ORM,在使用这个框架中,工作量最大的就是书写Mapping的映射文件,由于手动书写很容易出错,我们可以利用Mybatis-Generator来帮我们自动生成文件。

1.pom文件添加依赖

            <plugin>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-maven-plugin</artifactId>
                <version>1.3.2</version>
                <configuration>
                    <!--打印詳細信息,主要是針對表的相關日誌-->
                    <verbose>true</verbose>
                    <!--overwrite 配置是为了覆盖 java 类-->
                    <overwrite>true</overwrite>
                </configuration>
            </plugin>

  

 

 

 

参考资料:

1.https://www.cnblogs.com/smileberry/p/4145872.html#top

2.IDEA 中使用MyBatis-generator 自动生成MyBatis代码

 

使用Mybatis-Generator自动生成Dao、Model、Mapping相关文件

标签:框架   pre   blank   代码   href   target   打印   --   利用   

原文地址:https://www.cnblogs.com/jycjy/p/10682398.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!