IntelliJ IDEA中使用mybatis

网友投稿 325 2023-02-09


IntelliJ IDEA中使用mybatis

情景介绍

编写代码的过程中,我们总希望能有一个插件能快速生成公用的相似的代码。感觉mybatis-generator用起来不错。下面就来总结一下它的使用方法。

使用步骤

一、新建generator.xml文件

"-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"

"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd" >

userId="${username}" password="${password}"/>

domainObjectName="Thirdptysvc_type" enableCountByExample="false"

enableDeleteByExample="false" enableSelectByExample="false"

enableUpdateByExample="false">

userId="${username}" password="${password}"/>

domainObjectName="Thirdptysvc_type" enableCountByExample="false"

enableDeleteByExample="false" enableSelectByExample="false"

enableUpdateByExample="false">

二、在pom.xml导入依赖包

&ltcCNnMWRy;!--Mybatis-generator插件,用于自动生成Mapper和POJO-->

org.mybatis.generator

mybatis-generatorcCNnMWRy-maven-plugin

1.3.2

src/main/resources/generatorConfig.xml

true

true

Generate MyBatis Artifacts

generate

org.mybatis.generator

mybatis-generator-core

1.3.2

注意

1.这段代码要放到

e3izm

2.maven2下载关于generator,maven依赖包下载不下来,需要更改为maven3才能下载下来

maven3更改.png

三、新建maven运行器

maven.png

mybatis-generator:generate -e

好了,大功告成,运行maven运行器即可!

如果有什么问题,可以阅读官方文档。

MyBatis生成器官方文档


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:centos下GitLab+Jenkins持续集成环境搭建(安装jenkins)
下一篇:在Vue项目中引入腾讯验证码服务的教程
相关文章

 发表评论

暂时没有评论,来抢沙发吧~